Skip to content

Commit

Permalink
python-coverage no longer has a 'use_cache' method
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Jan 21, 2020
1 parent c0df0b5 commit 1efe92d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion python/saliweb/test/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ def runTests(self):
if coverage:
self.cov.stop()
self.cov.save()
self.cov.use_cache(False)
print("\nPython coverage report\n", file=sys.stderr)

if hasattr(coverage.files, 'RELATIVE_DIR'):
Expand Down
1 change: 0 additions & 1 deletion test/backend/run-all-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def runTests(self):
shutil.rmtree(self.tmpdir)
self.cov.stop()
self.cov.combine()
self.cov.use_cache(True)
print("\nPython coverage report\n", file=sys.stderr)

if hasattr(coverage.files, 'RELATIVE_DIR'):
Expand Down
1 change: 0 additions & 1 deletion test/build/run-all-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def runTests(self):
if coverage:
self.cov.stop()
self.cov.combine()
self.cov.use_cache(True)
print("\nPython coverage report\n", file=sys.stderr)

if hasattr(coverage.files, 'RELATIVE_DIR'):
Expand Down
1 change: 0 additions & 1 deletion test/pyfrontend/run-all-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def runTests(self):
shutil.rmtree(self.tmpdir)
self.cov.stop()
self.cov.combine()
self.cov.use_cache(True)
print("\nPython coverage report\n", file=sys.stderr)

if hasattr(coverage.files, 'RELATIVE_DIR'):
Expand Down

0 comments on commit 1efe92d

Please sign in to comment.