test-backend: Fix venv files being included in coverage reports.

This commit is contained in:
Tim Abbott 2016-05-19 09:36:42 -07:00
parent f9bbc5d6ff
commit e4707af2e2
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ if __name__ == "__main__":
if options.coverage:
import coverage
cov = coverage.Coverage()
cov = coverage.Coverage(omit="/srv/zulip-venv-cache/*")
cov.start()
if options.profile:
import cProfile