summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2016-10-02 18:12:50 +0200
committerJulian Andres Klode <jak@debian.org>2016-10-04 19:41:15 +0200
commit374a6efa1d6d77016e14a32f2dd85e8e1773187d (patch)
tree786c9f39741512b6240f55d90abf82c4d5b1c5fe
parent221ba9e2c9223a6af07cad9371c6233781a20db9 (diff)
travis: Move codecov from after_success to after_script
We always want to run codecov test, even if there are spurious failures. We should really work around those failures more, though, it is starting to annoy me.
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index af84b67dd..192573e7d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,7 +24,7 @@ script:
- sudo chmod go+x /home/travis
- sudo chmod -R go+rwX /home/travis/build
- sudo ./test/integration/run-tests -qq
-after_success:
+after_script:
- cd build
- gcov -r $(find -name '*.gcno')
- bash <(curl -s https://codecov.io/bash)