diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-01 14:19:24 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-01 16:24:37 -0400 |
commit | 3d43c74cd2dd8c66c29572bc04a4b0de3e206364 (patch) | |
tree | 282d10151f6ba009fdd8d8a1d8713a0fc5441026 /tests/test_api.py | |
parent | 7db98362f368ac569edf66228d52cbc64a6d69aa (diff) | |
download | python-coveragepy-git-3d43c74cd2dd8c66c29572bc04a4b0de3e206364.tar.gz |
refactor: remove some unneeded behavior conditionals
Diffstat (limited to 'tests/test_api.py')
-rw-r--r-- | tests/test_api.py | 3 |
1 files changed, 0 insertions, 3 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.""" |