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:
parent
74933daf8d
commit
d008e3d52a
|
@ -0,0 +1,4 @@
|
|||
[run]
|
||||
omit =
|
||||
*/test_*.py
|
||||
*/*_test.py
|
Loading…
Reference in New Issue