Update .coveragerc

This change enables us to start getting coverage reports about test modules so that we can start detecting dead(unused) code
This commit is contained in:
Pedro Algarvio 2019-10-23 13:26:35 +01:00
parent c054c0a502
commit d78e2a32e2
No known key found for this signature in database
GPG key ID: BB36BF6584A298FF

View file

@ -1,14 +1,11 @@
[run] [run]
branch = True branch = True
cover_pylib = False cover_pylib = False
source =
salt
parallel = True parallel = True
concurrency = multiprocessing concurrency = multiprocessing
omit = omit =
tests/*.py
setup.py setup.py
salt/daemons/test/* .nox/*
[report] [report]
# Regexes for lines to exclude from consideration # Regexes for lines to exclude from consideration
@ -30,7 +27,3 @@ exclude_lines =
ignore_errors = True ignore_errors = True
[paths]
source =
salt