From 0db1c96f1e00fc3a50d0560198bd8fe381e65b66 Mon Sep 17 00:00:00 2001 From: Hanne Moa Date: Tue, 21 Nov 2023 12:07:40 +0100 Subject: [PATCH] Debug tox environment --- tox.ini | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tox.ini b/tox.ini index c189504894..e00944f5f7 100644 --- a/tox.ini +++ b/tox.ini @@ -58,6 +58,9 @@ allowlist_externals = sed mkdir chmod + pwd + ls + echo usedevelop = true commands_pre = @@ -65,6 +68,10 @@ commands_pre = chmod 777 {toxinidir}/reports/coverage commands = + {unit,integration,functional}: pwd + {unit,integration,functional}: ls + {unit,integration,functional}: python3 -c "import sys; print(':'.join(sys.path))" + unit: pytest -o junit_suite_name="{envname} unit tests" --cov-config {toxinidir}/tests/.coveragerc --cov={toxinidir}/python --cov-report=xml:reports/{envname}/coverage.xml --junitxml=reports/{envname}/unit-results.xml --verbose {posargs:tests/unittests} {integration,functional}: python setup.py build_sass