From 57eb33db7b98f7809e3aa77730049301bf9025d7 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Tue, 25 Apr 2017 13:19:37 +1000 Subject: [PATCH] Don't test PyPy3 in Travis CI for now --- .travis.yml | 6 ++++-- README.rst | 7 +++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fb11944..9608012 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/README.rst b/README.rst index fd217f6..a90264c 100644 --- a/README.rst +++ b/README.rst @@ -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.