ci: don't fail on codecov errors, it's flaky atm

This commit is contained in:
Christoph Reiter 2018-11-07 20:55:13 +01:00
parent 1d852d8638
commit c6821da67d
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ copy cairo-windows-%CAIRO_VER%\lib\%MSVC_PLATFORM%\cairo.dll cairo || goto :erro
set CL=/WX
%PYTHON% -m coverage run --branch setup.py test || goto :error
%PYTHON% -m coverage xml || goto :error
%PYTHON% -m codecov --required -f coverage.xml || goto :error
%PYTHON% -m codecov --required -f coverage.xml
goto :EOF
:error

View File

@ -10,7 +10,7 @@ $PYTHON -m pip install mypy || true
export CFLAGS="-std=c90 -Wall -Wno-long-long -Werror -coverage"
$PYTHON -m coverage run --branch setup.py test
$PYTHON -m codecov --required --branch "$CODECOV_BRANCH"
$PYTHON -m codecov --required --branch "$CODECOV_BRANCH" || true
$PYTHON setup.py sdist
$PYTHON setup.py install --root="$(pwd)"/_root_abs
$PYTHON -m pip install dist/*

View File

@ -65,7 +65,7 @@ install:
script:
- python -m coverage run --branch setup.py test
- python -m codecov
- python -m codecov --required || true
- python -m flake8 .
- python setup.py sdist
- python setup.py bdist