From 3d8526412e90f645ecc4b3ae9b567cb2c73fe3aa Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 31 Dec 2021 12:57:11 -0500 Subject: refactor: remove code that was only needed for Python 3.6 --- tests/test_execfile.py | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/test_execfile.py') 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]) -- cgit v1.2.1