mirror of
https://github.com/jazzband/contextlib2.git
synced 2026-03-16 21:50:24 +00:00
Don't test PyPy3 in Travis CI for now
This commit is contained in:
parent
8728cae63b
commit
57eb33db7b
2 changed files with 11 additions and 2 deletions
|
|
@ -15,8 +15,10 @@ matrix:
|
|||
env: TOXENV=py37
|
||||
- python: pypy
|
||||
env: TOXENV=pypy
|
||||
- python: pypy3
|
||||
env: TOXENV=pypy3
|
||||
# Travis CI hasn't updated to PyPy3 2.5 yet, so still has the exception
|
||||
# chaining compatibility bug that breaks the contextlib2 tests
|
||||
# - python: pypy3
|
||||
# env: TOXENV=pypy3
|
||||
install: pip install tox coveralls && tox --notest
|
||||
script: tox
|
||||
after_success: coveralls
|
||||
|
|
|
|||
|
|
@ -46,4 +46,11 @@ Versions currently tested in both tox and Travis CI are:
|
|||
* CPython 3.6
|
||||
* CPython 3.7 (CPython development branch)
|
||||
* PyPy
|
||||
|
||||
Versions currently tested only in tox are:
|
||||
|
||||
* 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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue