-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
.coveragerc
56 lines (54 loc) · 1.26 KB
/
.coveragerc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[run]
# source = mystic
include =
*/mystic/*
*/mystic/cache/*
*/mystic/models/*
*/mystic/math/*
omit =
*/tests/*
*/info.py
*/_scipyoptimize.py
*/_scipy060optimize.py
*/_signal.py
*/scripts.py
*/support.py
*/munge.py
# _signal: can't test the signal handler
# scripts: can't test? ...unless return mpl object
# support: can't test? ...unless return mpl object
# munge: can't test? ...unless create dummy files
branch = true
# timid = true
# parallel = true # and need to 'combine' data files
# concurrency = multiprocessing # thread
# data_file = $TRAVIS_BUILD_DIR/.coverage
# debug = trace
[paths]
source =
mystic
mystic/cache
mystic/models
mystic/math
*/site-packages/mystic
*/site-packages/mystic/cache
*/site-packages/mystic/math
*/site-packages/mystic/models
*/site-packages/mystic-*/mystic
*/site-packages/mystic-*/mystic/cache
*/site-packages/mystic-*/mystic/math
*/site-packages/mystic-*/mystic/models
[report]
include =
*/mystic/*
*/mystic/cache/*
*/mystic/models/*
*/mystic/math/*
exclude_lines =
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
# show_missing = true
ignore_errors = true
# pragma: no branch
# noqa