tox.ini: use a pytest --basetemp with spaces
This catches quoting bugs that were just fixed by removing shlex in the previous commit. Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
parent
94f8a04ac8
commit
06a3b50dd6
7
tox.ini
7
tox.ini
|
@ -34,8 +34,9 @@ deps =
|
|||
flake8
|
||||
mypy
|
||||
setenv =
|
||||
# For instance: ./.tox/py3/tmp/
|
||||
TOXTEMPDIR={envtmpdir}
|
||||
commands =
|
||||
python -m pytest --cov=west {posargs:tests}
|
||||
python -m flake8 --config={toxinidir}/tox.ini {toxinidir}
|
||||
python -m mypy --config-file={toxinidir}/tox.ini --package=west
|
||||
python -m pytest --cov=west {posargs:tests} --basetemp='{envtmpdir}/pytest with space/'
|
||||
python -m flake8 --config='{toxinidir}'/tox.ini '{toxinidir}'
|
||||
python -m mypy --config-file='{toxinidir}'/tox.ini --package=west
|
||||
|
|
Loading…
Reference in New Issue