From 409397d74a1a9dd1257a55b6c9ae02a7b8bf1bdd Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Tue, 9 Apr 2024 17:33:37 +0200 Subject: [PATCH] Enable parallel execution and output of tox env Change-Id: Id16a89fe150c344298c317fb27874e42c1ef4876 Signed-off-by: garciadeblas --- devops-stages/stage-test.sh | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devops-stages/stage-test.sh b/devops-stages/stage-test.sh index 276d0d3..c9360d5 100755 --- a/devops-stages/stage-test.sh +++ b/devops-stages/stage-test.sh @@ -14,5 +14,5 @@ # limitations under the License. echo Launching tox -tox --parallel=auto +TOX_PARALLEL_NO_SPINNER=1 tox --parallel=auto diff --git a/tox.ini b/tox.ini index b648ff1..ddb7f9a 100644 --- a/tox.ini +++ b/tox.ini @@ -27,7 +27,7 @@ basepython = python3.10 setenv = VIRTUAL_ENV={envdir} PYTHONDONTWRITEBYTECODE = 1 deps = -r{toxinidir}/requirements.txt - +parallel_show_output = true ####################################################################################### [testenv:black] -- 2.17.1