summaryrefslogtreecommitdiff
path: root/tests/test_parsing.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2019-08-29 11:31:57 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2019-08-29 11:38:14 +0200
commite1ea37642d0fd9bffb865da4122706e7349afec1 (patch)
tree4a18c2f26f95333dc9e6c7016e2eb44b174599b5 /tests/test_parsing.py
parent1655f9cdd72dd3e6dcaf071e84aa5e897e06d39d (diff)
downloadsemantic-version-e1ea37642d0fd9bffb865da4122706e7349afec1.tar.gz
Restore Python2 support.rbarrois/restore-py2
Diffstat (limited to 'tests/test_parsing.py')
-rwxr-xr-xtests/test_parsing.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test_parsing.py b/tests/test_parsing.py
index 0da679f..01b7b5e 100755
--- a/tests/test_parsing.py
+++ b/tests/test_parsing.py
@@ -5,11 +5,18 @@
import itertools
import unittest
+import sys
import semantic_version
class ParsingTestCase(unittest.TestCase):
+ if sys.version_info[0] <= 2:
+ import contextlib
+ @contextlib.contextmanager
+ def subTest(self, **kwargs):
+ yield
+
invalids = [
None,
'',
@@ -66,6 +73,12 @@ class ParsingTestCase(unittest.TestCase):
class ComparisonTestCase(unittest.TestCase):
+ if sys.version_info[0] <= 2:
+ import contextlib
+ @contextlib.contextmanager
+ def subTest(self, **kwargs):
+ yield
+
order = [
'1.0.0-alpha',
'1.0.0-alpha.1',