blob: 85b735b982eab99da5036c76129a63a94acc36a9 [file] [log] [blame]
Sam Chiu6add5432018-05-21 18:03:56 +08001[run]
2branch = True
3
4# module names must be listed one per line.
5source =
6 acloud
7
8# omit file patterns must be listed one per line. */.local/* /usr/*
9omit =
10 *_test.py
Kevin Cheng1f471dc2018-05-30 00:04:32 -070011 *__init__.py
chojoycedd243f52019-08-07 17:15:02 +080012 *_args.py
Kevin Cheng1f471dc2018-05-30 00:04:32 -070013 *public/acloud_kernel/*
chojoycedd243f52019-08-07 17:15:02 +080014 *public/acloud_common.py
15 *public/acloud_main.py
Kevin Cheng1f471dc2018-05-30 00:04:32 -070016 # TODO: Remove the bottom 2 when the files are deleted.
17 *public/__main__.py
18 *setup.py
Sam Chiu1e2be8a2019-11-29 15:40:01 +080019
20[report]
21# Regexes for lines to exclude from consideration
22exclude_lines =
23 # Don't complain about missing code for debugging purpose:
24 def __repr__
25 raise NotImplementedError
26
27 if __name__ == .__main__.: