From ca09a9778d94f49c37438cf88ed43f935f9aeede Mon Sep 17 00:00:00 2001 From: Yu-Ting Hsiung Date: Tue, 30 Dec 2025 22:43:38 +0800 Subject: [PATCH] ci: use more workers to speed up tests in pipeline --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 76896d350..8e7f1fe5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -259,7 +259,7 @@ check-commit.help = "Check the commit messages" check-commit.cmd = "poetry run cz --no-raise 3 check --rev-range origin/master.." test.help = "Run the test suite" -test.cmd = "pytest -n 3 --dist=loadfile" +test.cmd = "pytest -n auto --dist=loadfile" "test:all".help = "Run the test suite on all supported Python versions" "test:all".cmd = "tox --parallel"