From 0138e9cbb001b6ed3aab026737c83642603e9ff1 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Wed, 27 Feb 2019 08:44:11 +0100 Subject: [PATCH] ci: coverage: remove --ignore-errors This should not be necessary (anymore). --- .travis.yml | 4 ++-- scripts/upload-coverage.bat | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9616a0818..7cfc4068a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -103,8 +103,8 @@ after_success: # Add last TOXENV to $PATH. PATH="$PWD/.tox/${TOXENV##*,}/bin:$PATH" coverage combine - coverage xml --ignore-errors - coverage report -m --ignore-errors + coverage xml + coverage report -m bash <(curl -s https://codecov.io/bash) -Z -X gcov -X coveragepy -X search -X xcode -X gcovout -X fix -f coverage.xml -F $TRAVIS_OS_NAME fi diff --git a/scripts/upload-coverage.bat b/scripts/upload-coverage.bat index 2e84f99dd..3f9d423e7 100644 --- a/scripts/upload-coverage.bat +++ b/scripts/upload-coverage.bat @@ -8,8 +8,8 @@ if "%PYTEST_COVERAGE%" == "1" ( ) python -m pip install codecov coverage combine - coverage xml --ignore-errors - coverage report -m --ignore-errors + coverage xml + coverage report -m scripts\retry codecov --required -X gcov pycov search -f coverage.xml --flags windows ) else ( echo Skipping coverage upload, PYTEST_COVERAGE=%PYTEST_COVERAGE%