Skip to content

Commit

Permalink
ci: coverage: remove --ignore-errors
Browse files Browse the repository at this point in the history
This should not be necessary (anymore).
  • Loading branch information
blueyed committed Feb 27, 2019
1 parent ba0158f commit a734e1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions scripts/upload-coverage.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ if not defined PYTEST_NO_COVERAGE (
)
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_NO_COVERAGE is set
Expand Down

0 comments on commit a734e1f

Please sign in to comment.