Skip to content

Commit

Permalink
Try even harder to avoid cross-pollution of tox env.
Browse files Browse the repository at this point in the history
pip really tries hard to build wheels and re-uses them in pure/non-pure
environments resulting in unpredictable environments.
  • Loading branch information
hannosch committed Jan 18, 2017
1 parent 8fa9752 commit cc88217
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ envlist =
py27,py27-pure,py33,py33-pure,py34,py34-pure,py35,py35-pure,py36,py36-pure,pypy,pypy3,coverage

[testenv]
install_command = pip install --no-cache-dir {opts} {packages}
install_command = pip install --no-cache-dir --no-binary=:all: {opts} {packages}
commands =
zope-testrunner --test-path={envsitepackagesdir} -s ComputedAttribute -s ExtensionClass -s MethodObject
deps =
zope.testrunner
setenv =
PIP_NO_CACHE = 1
PIP_NO_BINARY = ComputedAttribute ExtensionClass MethodObject

[testenv:py27-pure]
basepython =
Expand Down

0 comments on commit cc88217

Please sign in to comment.