From 8d5d8febf549db871ce153323a8f72c6f72ebccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 17 Jul 2024 17:46:52 +0200 Subject: [PATCH] tox: Employ xdist by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 2c9c5f2..ff379e5 100644 --- a/tox.ini +++ b/tox.ini @@ -7,10 +7,11 @@ isolated_build = True deps = pytest81: pytest==8.1.* pytest82: pytest==8.2.* + pytest-xdist extras = test commands = - pytest -vv {posargs} + pytest -vv -n auto {posargs} [testenv:qa] skip_install = True