diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-13 07:11:04 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-13 07:11:04 -0500 |
commit | 8b65ba2e0419087b5b24ea04107e983323940ee0 (patch) | |
tree | f2e5b49ac33400c1487940ad0600221fe838c0f6 /tests/test_api.py | |
parent | be607f78fe5efab3cef22da8fffbe18d1b413128 (diff) | |
download | python-coveragepy-git-8b65ba2e0419087b5b24ea04107e983323940ee0.tar.gz |
Jython has no multiprocessing module
Diffstat (limited to 'tests/test_api.py')
-rw-r--r-- | tests/test_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index 6f142100..9de83fb2 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -35,7 +35,7 @@ class ApiTest(CoverageTest): def assertFiles(self, files): """Assert that the files here are `files`, ignoring the usual junk.""" here = os.listdir(".") - here = self.clean_files(here, ["*.pyc", "__pycache__"]) + here = self.clean_files(here, ["*.pyc", "__pycache__", "*$py.class"]) self.assertCountEqual(here, files) def test_unexecuted_file(self): |