1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| # .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
| *__init__.py
| *unittest_constants.py
|
| [report]
| show_missing = False
|
|