diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-31 12:57:11 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-31 13:07:02 -0500 |
commit | 3d8526412e90f645ecc4b3ae9b567cb2c73fe3aa (patch) | |
tree | 32292a12338347b5d8a64b49dcc2d33f4801dd30 /tests/test_execfile.py | |
parent | 39f8f3ed43cf82cdf30b57d7f9624addcbd9e372 (diff) | |
download | python-coveragepy-git-3d8526412e90f645ecc4b3ae9b567cb2c73fe3aa.tar.gz |
refactor: remove code that was only needed for Python 3.6
Diffstat (limited to 'tests/test_execfile.py')
-rw-r--r-- | tests/test_execfile.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_execfile.py b/tests/test_execfile.py index 9c8b9233..6d316700 100644 --- a/tests/test_execfile.py +++ b/tests/test_execfile.py @@ -242,7 +242,6 @@ class RunPycFileTest(CoverageTest): # In some environments, the pycfile persists and pollutes another test. os.remove(pycfile) - @pytest.mark.skipif(not env.PYBEHAVIOR.hashed_pyc_pep552, reason="No hashed .pyc here") def test_running_hashed_pyc(self): pycfile = self.make_pyc(invalidation_mode=py_compile.PycInvalidationMode.CHECKED_HASH) run_python_file([pycfile]) |