Don't test PyPy3 in Travis CI for now

This commit is contained in:
Nick Coghlan 2017-04-25 13:19:37 +10:00
parent 8728cae63b
commit 57eb33db7b
2 changed files with 11 additions and 2 deletions

View file

@ -15,8 +15,10 @@ matrix:
env: TOXENV=py37 env: TOXENV=py37
- python: pypy - python: pypy
env: TOXENV=pypy env: TOXENV=pypy
- python: pypy3 # Travis CI hasn't updated to PyPy3 2.5 yet, so still has the exception
env: TOXENV=pypy3 # chaining compatibility bug that breaks the contextlib2 tests
# - python: pypy3
# env: TOXENV=pypy3
install: pip install tox coveralls && tox --notest install: pip install tox coveralls && tox --notest
script: tox script: tox
after_success: coveralls after_success: coveralls

View file

@ -46,4 +46,11 @@ Versions currently tested in both tox and Travis CI are:
* CPython 3.6 * CPython 3.6
* CPython 3.7 (CPython development branch) * CPython 3.7 (CPython development branch)
* PyPy * PyPy
Versions currently tested only in tox are:
* PyPy3 * PyPy3
This is due to an exception chaining compatibility bug that was fixed in
the PyPy3 5.5 alpha release, while the version on Travis CI (as of April 2017)
is still the older PyPy3 2.4.0 release.