From 2e0f9bcc43e27a75e225554d8a365acb08f44a60 Mon Sep 17 00:00:00 2001 From: Jac Fitzgerald Date: Thu, 18 Jun 2026 22:03:30 -0700 Subject: [PATCH] chore: run tests in parallel with pytest-xdist Adds -n auto to pytest addopts so the test suite uses all available CPU cores. Reduces local and CI run time from ~6 min to ~2 min. Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ebb4fe8be..c0961c889 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,7 +67,7 @@ exclude = ['/bin/'] [tool.pytest.ini_options] testpaths = ["test"] -addopts = "--junitxml=./test.junit.xml" +addopts = "--junitxml=./test.junit.xml -n auto" [tool.versioneer] VCS = "git"