19 lines
315 B
Plaintext
19 lines
315 B
Plaintext
|
|
# .coveragerc to control coverage.py
|
||
|
|
[run]
|
||
|
|
branch = True
|
||
|
|
|
||
|
|
# module names must be listed one per line.
|
||
|
|
source =
|
||
|
|
aidegen
|
||
|
|
|
||
|
|
# omit file patterns must be listed one per line. */.local/* /usr/*
|
||
|
|
omit =
|
||
|
|
*_unittest.py
|
||
|
|
*run_unittests.py
|
||
|
|
*__init__.py
|
||
|
|
*unittest_constants.py
|
||
|
|
|
||
|
|
[report]
|
||
|
|
show_missing = False
|
||
|
|
|