##// 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 [run]
1 [run]
2 omit =
2 omit =
3 # the bin scripts are not part of the Kallithea web app
3 # the bin scripts are not part of the Kallithea web app
4 kallithea/bin/*
4 kallithea/bin/*
5 # we ship with no active extensions
5 # we ship with no active extensions
6 kallithea/config/rcextensions/*
6 kallithea/config/rcextensions/*
7 # dbmigrate is not a part of the Kallithea web app
7 # dbmigrate is not a part of the Kallithea web app
8 kallithea/lib/dbmigrate/*
8 kallithea/lib/dbmigrate/*
9 # the tests themselves should not be part of the coverage report
9 # the tests themselves should not be part of the coverage report
10 kallithea/tests/*
10 kallithea/tests/*
11 # the scm hooks are not run in the kallithea process
11 # the scm hooks are not run in the kallithea process
12 kallithea/config/post_receive_tmpl.py
12 kallithea/config/post_receive_tmpl.py
13 kallithea/config/pre_receive_tmpl.py
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 [paths]
30 [paths]
16 source =
31 source =
17 kallithea/
32 kallithea/
18 **/workspace/*/kallithea
33 **/workspace/*/kallithea
General Comments 0
You need to be logged in to leave comments. Login now