• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    # gce is not support now.
20    *create/gce_local_image_remote_instance.py
21    *create/gce_remote_image_remote_instance.py
22
23[report]
24# Regexes for lines to exclude from consideration
25exclude_lines =
26    # Don't complain about missing code for debugging purpose:
27    def __repr__
28    raise NotImplementedError
29    logger.info(.*)
30    logger.warning(.*)
31    logger.debug(.*)
32
33    if __name__ == .__main__.: