Commit 685987d6 authored by Paul Ganssle's avatar Paul Ganssle

Skip coverage on pypy3 on travis

On pypy3 on Travis (version 5.8.0), running with coverage
enabled causes significant slowdown and test_build_meta
ends up timing out or otherwise failing. Until that is
fixed, skip coverage on pypy3 on Travis.
parent 9d9aa90c
......@@ -9,7 +9,6 @@ python:
- &latest_py3 3.6
- nightly
- pypy
- pypy3
env:
TOXENV=py
......@@ -23,6 +22,10 @@ jobs:
- TOXENV=py
- python: *latest_py2
env: *cenv
- python: pypy3
# Running coverage breaks the pypy3 build on Travis only.
# Until that's fixed the pypy3 build needs to be run without coverage
script: tox -e py -- $TRAVIS_BUILD_DIR
- stage: deploy (to PyPI for tagged commits)
if: tag IS present
python: *latest_py3
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment