From d44b82976bf2fcc2be1715f31be0eae521787ab5 Mon Sep 17 00:00:00 2001 From: sid-rl Date: Mon, 17 Nov 2025 15:24:16 -0800 Subject: [PATCH 1/2] Increase pytest workers from 2 to 10 --- .github/workflows/smoketests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/smoketests.yml b/.github/workflows/smoketests.yml index 0a7dc2338..2fe394f13 100644 --- a/.github/workflows/smoketests.yml +++ b/.github/workflows/smoketests.yml @@ -51,6 +51,6 @@ jobs: env: # Use 2 workers to run files in parallel. # Tests within a file are run sequentially. - PYTEST_ADDOPTS: "-n 2 -m smoketest" + PYTEST_ADDOPTS: "-n 10 -m smoketest" run: | uv run pytest -q -vv tests/smoketests From 723a3ffb343df43e220d3b556a2aa4d52a85571e Mon Sep 17 00:00:00 2001 From: sid-rl Date: Mon, 17 Nov 2025 16:39:39 -0800 Subject: [PATCH 2/2] Reduce pytest workers from 10 to 5 --- .github/workflows/smoketests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/smoketests.yml b/.github/workflows/smoketests.yml index 2fe394f13..5931da235 100644 --- a/.github/workflows/smoketests.yml +++ b/.github/workflows/smoketests.yml @@ -49,8 +49,8 @@ jobs: - name: Run smoke tests (pytest via uv) env: - # Use 2 workers to run files in parallel. + # Use 5 workers to run files in parallel. # Tests within a file are run sequentially. - PYTEST_ADDOPTS: "-n 10 -m smoketest" + PYTEST_ADDOPTS: "-n 5 -m smoketest" run: | uv run pytest -q -vv tests/smoketests