diff options
Diffstat (limited to 'tests/test_execfile.py')
-rw-r--r-- | tests/test_execfile.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/test_execfile.py b/tests/test_execfile.py index fe02f5fe..c0ed2d48 100644 --- a/tests/test_execfile.py +++ b/tests/test_execfile.py @@ -4,13 +4,11 @@ """Tests for coverage.execfile""" import compileall -import fnmatch import json import os import os.path import pathlib import re -import sys import pytest @@ -107,7 +105,7 @@ class RunFileTest(CoverageTest): class RunPycFileTest(CoverageTest): """Test cases for `run_python_file`.""" - def make_pyc(self): # pylint: disable=inconsistent-return-statements + def make_pyc(self): """Create a .pyc file, and return the path to it.""" if env.JYTHON: pytest.skip("Can't make .pyc files on Jython") |