Use VIRTUALENV_NO_DOWNLOAD in tox (#200)
This commit is contained in:
parent
4db1f4ef17
commit
f8dab9b7ac
4
tox.ini
4
tox.ini
|
@ -3,6 +3,10 @@ envlist = py27,py34,py35,py36,pypy,flake8,manifest,docs,readme,coverage-report
|
||||||
|
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
|
# Prevent random setuptools/pip breakages like
|
||||||
|
# https://github.com/pypa/setuptools/issues/1042 from breaking our builds.
|
||||||
|
setenv =
|
||||||
|
VIRTUALENV_NO_DOWNLOAD=1
|
||||||
deps = -rdev-requirements.txt
|
deps = -rdev-requirements.txt
|
||||||
commands = python -m pytest {posargs}
|
commands = python -m pytest {posargs}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue