1[run]
2source =
3     gnupg
4branch = True
5#parallel = True
6timid = True
7
8[report]
9modules = gnupg
10omit =
11     */test*
12     */_version*
13     */__init__*
14     */copyleft*
15     */sitecustomize*
16# Regexes for lines to exclude from report generation:
17exclude_lines =
18     pragma: no cover
19     # don't complain if the code doesn't hit unimplemented sections:
20     raise NotImplementedError
21     pass
22     # don't complain if non-runnable or debuging code isn't run:
23     if 0:
24     if False:
25     def __repr__
26     if __name__ == .__main__.:
27# Ignore source code which cannot be found:
28ignore_errors = True
29# Exit with status code 2 if under this percentage is covered:
30fail_under = 10
31
32[html]
33directory = docs/coverage-html
34