1# .coveragerc to control coverage.py 2[run] 3branch = True 4 5# module names must be listed one per line. 6source = 7 aidegen 8 9# omit file patterns must be listed one per line. */.local/* /usr/* 10omit = 11 *_unittest.py 12 *run_unittests.py 13 *__init__.py 14 *unittest_constants.py 15 16[report] 17show_missing = False 18 19