ソースを参照

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 9 年 前
コミット
374a6efa1d
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  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)