ci: add .coveragerc to omit unit test code from coverage report

The code coverage report was including the unit tests themselves in the
coverage report. This resulted in an artifically inflated code coverage
metric, as code coverage tools will naturally report test code to be
very highly "covered".
This commit is contained in:
Mike Salvatore 2021-01-17 19:15:07 -05:00
parent 74933daf8d
commit d008e3d52a
1 changed files with 4 additions and 0 deletions

4
monkey/.coveragerc Normal file
View File

@ -0,0 +1,4 @@
[run]
omit =
*/test_*.py
*/*_test.py