Browse Source

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.
Julian Andres Klode 7 years ago
parent
commit
374a6efa1d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

+ 1 - 1
.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)