diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-05-05 08:49:01 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-05-05 08:49:01 -0400 |
commit | 692987a02adfaa7e05086c1d4c89228d0525bc2e (patch) | |
tree | c03a2d9a28ea2b3cbba0ceba3c44db2da0821868 /tests/test_parser.py | |
parent | 2a35bb182114a4ea47780cd0dc6fa08735e5fbaa (diff) | |
download | python-coveragepy-git-692987a02adfaa7e05086c1d4c89228d0525bc2e.tar.gz |
No more support for 2.6 or 3.3
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r-- | tests/test_parser.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py index afb87716..89ef6dc4 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -260,10 +260,6 @@ class ParserMissingArcDescriptionTest(CoverageTest): ) def test_missing_arc_descriptions_for_small_callables(self): - # We use 2.7 features here, so just skip this test on 2.6 - if env.PYVERSION < (2, 7): - self.skipTest("No dict or set comps in 2.6") - parser = self.parse_text(u"""\ callables = [ lambda: 2, |