Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable coverage reporting on pypy's py3.6 nightly branch #870

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion ci/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ else
# https://github.com/python-trio/trio/issues/711
# https://github.com/nedbat/coveragepy/issues/707#issuecomment-426455490
if [ "$(python -V)" != "Python 3.8.0a0" ]; then
bash <(curl -s https://codecov.io/bash) -F "${CODECOV_FLAG}"
# Disable coverage on pypy py3.6 nightly for now:
# https://bitbucket.org/pypy/pypy/issues/2943/
if [ "$PYPY_NIGHTLY_BRANCH" != "py3.6" ]; then
bash <(curl -s https://codecov.io/bash) -F "${CODECOV_FLAG}"
fi
fi
fi