This commit is contained in:
Anthony Sottile 2016-02-07 10:36:17 -08:00
parent b1e6063e12
commit b0797b4c6e
2 changed files with 7 additions and 1 deletions

View file

@ -8,7 +8,9 @@ env: # These should match the tox env list
- TOXENV=pypy - TOXENV=pypy
- TOXENV=pypy3 - TOXENV=pypy3
- TOXENV=py27 LATEST_GIT=1 - TOXENV=py27 LATEST_GIT=1
install: pip install coveralls tox # latest virtualenv combined with downgrading setuptools = sadness
# https://github.com/pypa/pip/issues/3461
install: pip install coveralls tox 'virtualenv<14'
script: tox script: tox
# Special snowflake. Our tests depend on making real commits. # Special snowflake. Our tests depend on making real commits.
before_install: before_install:

View file

@ -9,3 +9,7 @@ pytest
# setuptools breaks pypy3 with extraneous output # setuptools breaks pypy3 with extraneous output
setuptools<18.5 setuptools<18.5
# latest virtualenv combined with downgrading setuptools = sadness
# https://github.com/pypa/pip/issues/3461
virtualenv<14