File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ before_install:
27
27
# Install dependencies for building the docs
28
28
- $CONDA_INSTALL pip sphinx sphinx_rtd_theme pygments
29
29
# Install dependencies for code coverage (codecov.io)
30
- - pip install codecov
30
+ - if [ "$RUN_COVERAGE" == "yes" ]; then pip install codecov; fi
31
31
32
32
install :
33
33
- python setup.py build
@@ -37,10 +37,10 @@ script:
37
37
# Ensure that the documentation builds without warnings nor missing references
38
38
- cd docs ; make SPHINXOPTS=-Wn clean html ; cd ..
39
39
- python runtests.py -v
40
- - if [ "$RUN_COVERAGE" == "yes"]; then coverage run runtests.py; fi
40
+ - if [ "$RUN_COVERAGE" == "yes" ]; then coverage run runtests.py; fi
41
41
42
42
after_success :
43
- - codecov
43
+ - if [ "$RUN_COVERAGE" == "yes" ]; then codecov; fi
44
44
45
45
notifications :
46
46
email : false
You can’t perform that action at this time.
0 commit comments