Commit 620bd62c authored by Jason R. Coombs's avatar Jason R. Coombs

Set PIP_USE_PEP517 in installer command so as not to influence the tests with that setting.

parent 461ea400
...@@ -68,6 +68,8 @@ def disable_python_requires(): ...@@ -68,6 +68,8 @@ def disable_python_requires():
def run(args): def run(args):
os.environ['PIP_USE_PEP517'] = 'true'
if is_install_self(args): if is_install_self(args):
remove_setuptools() remove_setuptools()
bootstrap() bootstrap()
......
...@@ -18,7 +18,6 @@ install_command = {[helpers]pip} install {opts} {packages} ...@@ -18,7 +18,6 @@ install_command = {[helpers]pip} install {opts} {packages}
list_dependencies_command = {[helpers]pip} freeze --all list_dependencies_command = {[helpers]pip} freeze --all
setenv = setenv =
COVERAGE_FILE={toxworkdir}/.coverage.{envname} COVERAGE_FILE={toxworkdir}/.coverage.{envname}
PIP_USE_PEP517=1
# TODO: The passed environment variables came from copying other tox.ini files # TODO: The passed environment variables came from copying other tox.ini files
# These should probably be individually annotated to explain what needs them. # These should probably be individually annotated to explain what needs them.
passenv=APPDATA HOMEDRIVE HOMEPATH windir APPVEYOR APPVEYOR_* CI CODECOV_* TRAVIS TRAVIS_* NETWORK_REQUIRED passenv=APPDATA HOMEDRIVE HOMEPATH windir APPVEYOR APPVEYOR_* CI CODECOV_* TRAVIS TRAVIS_* NETWORK_REQUIRED
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment