diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_api.py | 3 | ||||
-rw-r--r-- | tests/test_arcs.py | 7 |
2 files changed, 0 insertions, 10 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index 42ef986d..b17f9ee0 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -763,9 +763,6 @@ class CurrentInstanceTest(CoverageTest): assert cur0 is cur3 -@pytest.mark.skipif(not env.PYBEHAVIOR.namespaces_pep420, - reason="Python before 3.3 doesn't have namespace packages" -) class NamespaceModuleTest(UsingModulesMixin, CoverageTest): """Test PEP-420 namespace modules.""" diff --git a/tests/test_arcs.py b/tests/test_arcs.py index 3f634a85..8bf83008 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -1072,9 +1072,6 @@ class YieldTest(CoverageTest): ) assert self.stdout() == "20\n12\n" - @pytest.mark.skipif(not env.PYBEHAVIOR.yield_from, - reason="Python before 3.3 doesn't have 'yield from'" - ) def test_yield_from(self): self.check_coverage("""\ def gen(inp): @@ -1320,9 +1317,6 @@ class MiscArcTest(CoverageTest): arcz=".1 19 9.", ) - @pytest.mark.skipif(not env.PYBEHAVIOR.unpackings_pep448, - reason="Don't have unpacked literals until 3.5" - ) def test_unpacked_literals(self): self.check_coverage("""\ d = { @@ -1570,7 +1564,6 @@ class LambdaArcTest(CoverageTest): ) -@pytest.mark.skipif(not env.PYBEHAVIOR.async_syntax, reason="Async features are new in Python 3.5") class AsyncTest(CoverageTest): """Tests of the new async and await keywords in Python 3.5""" |