From 2ffbf9cc96fd13100f1ac74eddd8a95e43dffb08 Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Mon, 23 Mar 2026 22:12:26 -0400 Subject: [PATCH] fix: Enable xdist with coverage in tox.ini Fixes #932 --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 8388dc7..1fa4ce0 100644 --- a/tox.ini +++ b/tox.ini @@ -104,7 +104,7 @@ commands = --cov-report=xml:reports/coverage.xml \ --cov-fail-under=73 \ --junitxml=reports/junit.xml \ - -p no:xdist \ + -n auto --dist worksteal \ -m "not ollama and not docker and not selenium and not external_api and not skip_ci and not slow" [testenv:coverage] @@ -115,7 +115,7 @@ commands = --cov-report=term-missing \ --cov-report=xml \ --cov-fail-under=73 \ - -p no:xdist \ + -n auto --dist worksteal \ -m "not ollama and not docker and not selenium and not external_api and not slow" [testenv:coverage-html] @@ -126,7 +126,7 @@ commands = --cov-report=term-missing \ --cov-report=html \ --cov-fail-under=73 \ - -p no:xdist \ + -n auto --dist worksteal \ -m "not ollama and not docker and not selenium and not external_api and not slow" [testenv:coverage-parallel]