Remove tools/tests/* from test-tools test coverage.

Testing the tests seems redundant.
This commit is contained in:
Gordon P. Hemsley 2016-08-30 18:27:46 -04:00
parent 91a1e8aebc
commit 7070e1ce7c
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ if __name__ == '__main__':
if options.coverage:
import coverage
cov = coverage.Coverage(omit="*/zulip-venv-cache/*")
cov = coverage.Coverage(omit=[ "*/zulip-venv-cache/*", dir_join(tools_test_dir, "*") ])
cov.start()
suite = loader.discover(start_dir=tools_test_dir, top_level_dir=root_dir)