summaryrefslogtreecommitdiff
path: root/tests/test_execfile.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-12-30 18:07:36 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-12-30 18:35:09 -0500
commit45787e29dea3a41f2e9570b66a571a7ebcda4592 (patch)
tree7eeadde7d7a033e27abd1df7411bb525bd711148 /tests/test_execfile.py
parent85c7a4ac4161c4eb2efeaf07e6f833d3a073b018 (diff)
downloadpython-coveragepy-git-45787e29dea3a41f2e9570b66a571a7ebcda4592.tar.gz
refactor: removed mentions of Jython and IronPython
Diffstat (limited to 'tests/test_execfile.py')
-rw-r--r--tests/test_execfile.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_execfile.py b/tests/test_execfile.py
index 329ec528..e1db7bb5 100644
--- a/tests/test_execfile.py
+++ b/tests/test_execfile.py
@@ -14,7 +14,6 @@ import sys
import pytest
-from coverage import env
from coverage.exceptions import NoCode, NoSource, _ExceptionDuringRun
from coverage.execfile import run_python_file, run_python_module
from coverage.files import python_reported_file
@@ -196,9 +195,6 @@ class RunPycFileTest(CoverageTest):
def make_pyc(self, **kwargs):
"""Create a .pyc file, and return the path to it."""
- if env.JYTHON:
- pytest.skip("Can't make .pyc files on Jython")
-
self.make_file("compiled.py", """\
def doit():
print("I am here!")