You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
315 B
19 lines
315 B
# .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
|
|
|