summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-10 17:07:14 +0000
committerRichard Ipsum <richard.ipsum@codethink.co.uk>2014-11-10 17:07:14 +0000
commit02f40a17d9bcd68802292245afb7976b4aac3f6c (patch)
tree00b8103cbdbf4f1ae4649fa8cba26b508ef9e6d8
parent7f72180ea41ad96e5327ba584c54e353b2a2af76 (diff)
downloadimport-02f40a17d9bcd68802292245afb7976b4aac3f6c.tar.gz
uncomment test_eqs_bound_two_versions
-rwxr-xr-xexts/pip_find_deps_tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/exts/pip_find_deps_tests.py b/exts/pip_find_deps_tests.py
index b513ec0..7ace976 100755
--- a/exts/pip_find_deps_tests.py
+++ b/exts/pip_find_deps_tests.py
@@ -117,7 +117,9 @@ class ConflictDetectionTests(unittest.TestCase):
('>=', parse_version('0.2')))
# ('<=', 0.1) conflicts with ('>=', 0.2)
- #self.run_conflict_test(requirements, [expected_conflict])
+ self.run_conflict_test(requirements, [expected_conflict])
+
+ self.run_conflict_test(reverse(requirements), [reverse(expected_conflict)])
if __name__ == '__main__':
suite = unittest.TestLoader().loadTestsFromTestCase(ConflictDetectionTests)