From e845d5bf3a70232a9a6817ccd5fe3365c557956a Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Wed, 25 Sep 2024 21:19:46 +0300 Subject: [PATCH] Added unit tests to "tox -e parallel" environment (#2123) --- tox.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index a380920e..b1259e0e 100644 --- a/tox.ini +++ b/tox.ini @@ -153,15 +153,16 @@ commands = make clean [testenv:parallel] -description = Run all integration tests in parallel +description = Run all unit and integration tests in parallel allowlist_externals = tox setenv = PYTHONUNBUFFERED = 1 PYTHONDONTWRITEBYTECODE = 1 commands = tox -e \ + 3.12-unit,\ 3.12-linux-integration-py-amqp,\ 3.12-linux-integration-redis,\ 3.12-linux-integration-mongodb,\ 3.12-linux-integration-kafka \ - -p -o -- --exitfirst -n auto --dist=loadscope {posargs} + -p -o -- --exitfirst {posargs}