summaryrefslogtreecommitdiff
path: root/tests/test_npm.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_npm.py
parent1655f9cdd72dd3e6dcaf071e84aa5e897e06d39d (diff)
downloadsemantic-version-e1ea37642d0fd9bffb865da4122706e7349afec1.tar.gz
Restore Python2 support.rbarrois/restore-py2
Diffstat (limited to 'tests/test_npm.py')
-rw-r--r--tests/test_npm.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_npm.py b/tests/test_npm.py
index 86cbc76..7bed337 100644
--- a/tests/test_npm.py
+++ b/tests/test_npm.py
@@ -6,11 +6,18 @@
"""Test NPM-style specifications."""
import unittest
+import sys
from semantic_version import base
class NpmSpecTests(unittest.TestCase):
+ if sys.version_info[0] <= 2:
+ import contextlib
+ @contextlib.contextmanager
+ def subTest(self, **kwargs):
+ yield
+
examples = {
# range: [matchings], [failings]
'>=1.2.7': (