8000 travis: ignore pypy3 failures · drinkingjava/python-versioneer@a2d2337 · GitHub
[go: up one dir, main page]

Skip to content

Commit a2d2337

Browse files
committed
travis: ignore pypy3 failures
The pypy3 environment on Travis-CI provides python3.2, which is not supported by the current versions of setuptools and pip. I've got a downgrade workaround in place for py3.2, but for some reason it wasn't working for pypy3. So instead let's just tolerate pypy3 failures.
1 parent 2cf0a46 commit a2d2337

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ install:
2020
- if [[ $TRAVIS_PYTHON_VERSION != '3.2' ]]; then pip install -U tox virtualenv; else travis_retry pip install tox "virtualenv<14.0.0"; fi
2121
script:
2222
- tox -e py${TRAVIS_PYTHON_VERSION}
23+
matrix:
24+
allow_failures:
25+
- python: "pypy3"

0 commit comments

Comments
 (0)
0