##// END OF EJS Templates
.coveragerc: fix reporting of coverage to match what is run...
Thomas De Schampheleire -
r7421:4b241f19 default
parent child Browse files
Show More
@@ -1,18 +1,33 b''
1 1 [run]
2 2 omit =
3 3 # the bin scripts are not part of the Kallithea web app
4 4 kallithea/bin/*
5 5 # we ship with no active extensions
6 6 kallithea/config/rcextensions/*
7 7 # dbmigrate is not a part of the Kallithea web app
8 8 kallithea/lib/dbmigrate/*
9 9 # the tests themselves should not be part of the coverage report
10 10 kallithea/tests/*
11 11 # the scm hooks are not run in the kallithea process
12 12 kallithea/config/post_receive_tmpl.py
13 13 kallithea/config/pre_receive_tmpl.py
14 14
15 # same omit lines should be present in sections 'run' and 'report'
16 [report]
17 omit =
18 # the bin scripts are not part of the Kallithea web app
19 kallithea/bin/*
20 # we ship with no active extensions
21 kallithea/config/rcextensions/*
22 # dbmigrate is not a part of the Kallithea web app
23 kallithea/lib/dbmigrate/*
24 # the tests themselves should not be part of the coverage report
25 kallithea/tests/*
26 # the scm hooks are not run in the kallithea process
27 kallithea/config/post_receive_tmpl.py
28 kallithea/config/pre_receive_tmpl.py
29
15 30 [paths]
16 31 source =
17 32 kallithea/
18 33 **/workspace/*/kallithea
General Comments 0
You need to be logged in to leave comments. Login now