diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-02-06 21:55:29 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-02-06 21:57:26 -0500 |
commit | 2af7e87b26754fea68adfd1b8aa51052d987e60c (patch) | |
tree | 3d81d1e79bebd529240629b9cd43c4f0e273046b /tests/test_execfile.py | |
parent | e59da1bafafe4265188bb5c75c4e557dfbd47d90 (diff) | |
download | python-coveragepy-git-nedbat/better-combine-action.tar.gz |
refactor: convert all skipping to pytest skipsnedbat/better-combine-action
Diffstat (limited to 'tests/test_execfile.py')
-rw-r--r-- | tests/test_execfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_execfile.py b/tests/test_execfile.py index d221f2d3..3cdd1ed9 100644 --- a/tests/test_execfile.py +++ b/tests/test_execfile.py @@ -110,7 +110,7 @@ class RunPycFileTest(CoverageTest): def make_pyc(self): # pylint: disable=inconsistent-return-statements """Create a .pyc file, and return the path to it.""" if env.JYTHON: - self.skipTest("Can't make .pyc files on Jython") + pytest.skip("Can't make .pyc files on Jython") self.make_file("compiled.py", """\ def doit(): |