Kaynağa Gözat

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 yıl önce
ebeveyn
işleme
374a6efa1d
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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)