tox.ini: move pytest first, before style checkers

This is required to test code that includes temporary test hacks that
don't pass style checks.

People write ugly code first. Then they make it prettier.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2023-08-31 14:36:00 -07:00 committed by Martí Bolívar
parent dacb54ba1d
commit 80be0ecb41
1 changed files with 1 additions and 1 deletions

View File

@ -35,6 +35,6 @@ deps =
setenv =
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}