mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
More skipping on Python 2.
This commit is contained in:
parent
81b95f3335
commit
a529ba7d5e
@ -36,6 +36,10 @@ class ExtractSecretsTests(TestCase):
|
||||
"""
|
||||
Tests for ``_extract_secrets``.
|
||||
"""
|
||||
def setUp(self):
|
||||
if PY2:
|
||||
raise SkipTest("Not going to bother supporting Python 2")
|
||||
|
||||
def test_extract_secrets(self):
|
||||
"""
|
||||
``_extract_secrets()`` returns a dictionary with the extracted secrets
|
||||
@ -130,6 +134,8 @@ class RoutingTests(TestCase):
|
||||
Tests for the HTTP routing infrastructure.
|
||||
"""
|
||||
def setUp(self):
|
||||
if PY2:
|
||||
raise SkipTest("Not going to bother supporting Python 2")
|
||||
self._http_server = TestApp()
|
||||
self.client = StorageClient(
|
||||
DecodedURL.from_text("http://127.0.0.1"),
|
||||
|
Loading…
Reference in New Issue
Block a user