Skip test on Python 3 for now, since that is not going to work in short term.

This commit is contained in:
Itamar Turner-Trauring 2020-12-10 11:00:15 -05:00
parent c356ced49b
commit 5c1d904f57

View File

@ -1,9 +1,12 @@
from __future__ import print_function from __future__ import print_function
from future.utils import PY3
from past.builtins import unicode, chr as byteschr, long from past.builtins import unicode, chr as byteschr, long
import os, re, sys, time, json import os, re, sys, time, json
from functools import partial from functools import partial
from unittest import skipIf
from bs4 import BeautifulSoup from bs4 import BeautifulSoup
@ -2606,6 +2609,7 @@ class SystemTest(SystemTestMixin, RunBinTahoeMixin, unittest.TestCase):
return d return d
@skipIf(PY3, "Python 3 CLI support hasn't happened yet.")
def test_filesystem_with_cli_in_subprocess(self): def test_filesystem_with_cli_in_subprocess(self):
# We do this in a separate test so that test_filesystem doesn't skip if we can't run bin/tahoe. # We do this in a separate test so that test_filesystem doesn't skip if we can't run bin/tahoe.