Skip to content

Commit

Permalink
Record coverage on Python 3.8 too
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin committed Dec 16, 2019
1 parent 40a2d93 commit d6ec418
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -267,14 +267,10 @@ else
netsh winsock reset
fi

# Disable coverage on 3.8 until we run 3.8 on Windows CI too
# https://github.com/python-trio/trio/pull/784#issuecomment-446438407
if [[ "$(python -V)" = Python\ 3.8* ]]; then
true;
# coverage is broken in pypy3 7.1.1, but is fixed in nightly and should be
# fixed in the next release after 7.1.1.
# See: https://bitbucket.org/pypy/pypy/issues/2943/
elif [[ "$TRAVIS_PYTHON_VERSION" = "pypy3" ]]; then
if [[ "$TRAVIS_PYTHON_VERSION" = "pypy3" ]]; then
true;
else
# Flag pypy and cpython coverage differently, until it settles down...
Expand Down

0 comments on commit d6ec418

Please sign in to comment.