From dd1eb887b04f3df31565902fbfd0c805eef45124 Mon Sep 17 00:00:00 2001 From: Albert Li Date: Thu, 11 Sep 2025 12:03:53 -0700 Subject: [PATCH] Add worker for smoketest github action --- .github/workflows/smoketests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/smoketests.yml b/.github/workflows/smoketests.yml index aaf97d7a7..0a7dc2338 100644 --- a/.github/workflows/smoketests.yml +++ b/.github/workflows/smoketests.yml @@ -49,7 +49,8 @@ jobs: - name: Run smoke tests (pytest via uv) env: - # Force sequential to avoid overloading remote resources - PYTEST_ADDOPTS: "-n 1 -m smoketest" + # Use 2 workers to run files in parallel. + # Tests within a file are run sequentially. + PYTEST_ADDOPTS: "-n 2 -m smoketest" run: | uv run pytest -q -vv tests/smoketests