summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml11
1 files changed, 8 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 27ab17d9..8b7840b0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,6 +25,11 @@ install:
script:
- tox
- - if [[ $COVERAGE_COVERAGE == 'yes' ]]; then python igor.py combine_html; fi
- - if [[ $COVERAGE_COVERAGE == 'yes' ]]; then pip install codecov; fi
- - if [[ $COVERAGE_COVERAGE == 'yes' ]]; then codecov -X gcov --file coverage.xml; fi
+
+after_script:
+ - |
+ if [[ $COVERAGE_COVERAGE == 'yes' ]]; then
+ python igor.py combine_html
+ pip install codecov
+ codecov -X gcov --file coverage.xml
+ fi