File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -5,19 +5,19 @@ matrix:
5
5
- python : 2.7
6
6
env :
7
7
- COVERAGE=false
8
- - ARGS="--cov -- verbose"
8
+ - ARGS="--verbose"
9
9
- python : 3.4
10
10
env :
11
11
- COVERAGE=false
12
- - ARGS="--mpl --cov -- verbose"
12
+ - ARGS="--mpl --verbose"
13
13
- python : 3.5
14
14
env :
15
15
- COVERAGE=false
16
- - ARGS="--mpl --cov -- verbose"
16
+ - ARGS="--mpl --verbose"
17
17
- python : 3.5
18
18
env :
19
19
- COVERAGE=true
20
- - ARGS="--mpl --cov -- verbose"
20
+ - ARGS="--mpl --verbose"
21
21
22
22
before_install :
23
23
@@ -46,4 +46,8 @@ script:
46
46
- python check_probscale.py ${ARGS}
47
47
48
48
after_success :
49
- - if [ ${COVERAGE} = true ]; then coveralls; fi
49
+ - if [ ${COVERAGE} = true ]; then
50
+ coverage run --source probscale check_probscale.py;
51
+ coverage report -m;
52
+ coveralls;
53
+ fi
You can’t perform that action at this time.
0 commit comments