Skip to content
Snippets Groups Projects
Commit 00714e51 authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

set PIP_USE_PEP517 = False for tests

pip 19.1 otherwise complains about "editable mode is not supported for
pyproject.toml-style projects"
parent 6824ddd9
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,11 @@ deps = ...@@ -24,6 +24,11 @@ deps =
pip>=10 pip>=10
setenv = setenv =
# we have a pyproject.toml, but don't want pip to use it for building.
# (otherwise we get an error about 'editable mode is not supported for
# pyproject.toml-style projects').
PIP_USE_PEP517 = false
PYTHONDONTWRITEBYTECODE = no_byte_code PYTHONDONTWRITEBYTECODE = no_byte_code
COVERAGE_PROCESS_START = {toxinidir}/.coveragerc COVERAGE_PROCESS_START = {toxinidir}/.coveragerc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment