diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-15 18:34:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-15 18:34:00 +0200 |
commit | 26a9d2cef1b6fb3c553b837e64d8372c2c31aa24 (patch) | |
tree | 4ca1297d91745ce4ccf57069eb7251a5e06bd494 /ci/common | |
parent | d3d25f957dc01df5d2e1d84adcba5ab427a770ba (diff) | |
download | rneovim-26a9d2cef1b6fb3c553b837e64d8372c2c31aa24.tar.gz rneovim-26a9d2cef1b6fb3c553b837e64d8372c2c31aa24.tar.bz2 rneovim-26a9d2cef1b6fb3c553b837e64d8372c2c31aa24.zip |
ci: codecov: do not use flags [ci skip] (#10227)
Using flags results in timeouts on their end when viewing reports, and
is a known issue since months already.
Diffstat (limited to 'ci/common')
-rw-r--r-- | ci/common/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh index f1c5454e3f..18b5639885 100644 --- a/ci/common/test.sh +++ b/ci/common/test.sh @@ -4,7 +4,7 @@ submit_coverage() { if [ -n "${GCOV}" ]; then if curl --fail --output codecov.bash --silent https://codecov.io/bash; then - bash codecov.bash -c -F "$1" || echo "codecov upload failed." + bash codecov.bash -c || echo "codecov upload failed." rm -f codecov.bash fi fi |