diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-06-12 09:25:44 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-06-12 09:25:44 -0400 |
commit | 785a0d6b37fd1526799791a2b39dfcdead0ab9a0 (patch) | |
tree | 61ca652e5fb6c75f58636ff129fd79aac1842318 /tests/test_arcs.py | |
parent | 55d6b82324568c4fc61134c049875d3085721c0f (diff) | |
download | python-coveragepy-785a0d6b37fd1526799791a2b39dfcdead0ab9a0.tar.gz |
Use standard skipTest, which unittest-mixins will override.
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r-- | tests/test_arcs.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 16efbcd..5ea2fe1 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -370,7 +370,7 @@ class LoopArcTest(CoverageTest): def test_other_comprehensions(self): if env.PYVERSION < (2, 7): - self.skip("Don't have set or dict comprehensions before 2.7") + self.skipTest("Don't have set or dict comprehensions before 2.7") # Set comprehension: self.check_coverage("""\ o = ((1,2), (3,4)) @@ -394,7 +394,7 @@ class LoopArcTest(CoverageTest): def test_multiline_dict_comp(self): if env.PYVERSION < (2, 7): - self.skip("Don't have set or dict comprehensions before 2.7") + self.skipTest("Don't have set or dict comprehensions before 2.7") if env.PYVERSION < (3, 5): arcz = "-42 2B B-4 2-4" else: @@ -965,7 +965,7 @@ class YieldTest(CoverageTest): def test_yield_from(self): if env.PYVERSION < (3, 3): - self.skip("Python before 3.3 doesn't have 'yield from'") + self.skipTest("Python before 3.3 doesn't have 'yield from'") self.check_coverage("""\ def gen(inp): i = 2 @@ -1036,7 +1036,7 @@ class MiscArcTest(CoverageTest): def test_unpacked_literals(self): if env.PYVERSION < (3, 5): - self.skip("Don't have unpacked literals until 3.5") + self.skipTest("Don't have unpacked literals until 3.5") self.check_coverage("""\ d = { 'a': 2, @@ -1302,7 +1302,7 @@ class AsyncTest(CoverageTest): def setUp(self): if env.PYVERSION < (3, 5): - self.skip("Async features are new in Python 3.5") + self.skipTest("Async features are new in Python 3.5") super(AsyncTest, self).setUp() def test_async(self): |