1[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
11    *__init__.py
12    *_args.py
13    *public/acloud_kernel/*
14    *public/acloud_common.py
15    *public/acloud_main.py
16    # TODO: Remove the bottom 2 when the files are deleted.
17    *public/__main__.py
18    *setup.py
19
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__.: