From 8874fd20c3e37e84c344336bf86092ed94781812 Mon Sep 17 00:00:00 2001 From: Abhishek Khaparde Date: Mon, 27 Jul 2026 16:13:37 -0700 Subject: [PATCH] Fix #1428: add `-n` flag to nightly pytest (#1436) Running pytest in parallel will speed it up and use fewer CPU minutes. --- .github/workflows/nightly-pytest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly-pytest.yaml b/.github/workflows/nightly-pytest.yaml index 2479500e3..70ff14233 100644 --- a/.github/workflows/nightly-pytest.yaml +++ b/.github/workflows/nightly-pytest.yaml @@ -95,7 +95,7 @@ jobs: run: echo '::add-matcher::.github/problem-matchers/pytest.json' - name: Run Pytest - run: check/pytest + run: check/pytest -n auto - name: Print debugging info upon job failure if: failure()