From 1abd986c8040e3c3afa2f4c1bc82d2844a209e4a Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Thu, 25 Dec 2025 08:54:05 -0500 Subject: [PATCH] Revert "Enable parallel tests on Windows (#2715)" (#2726) --- .github/workflows/run-tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index bd85eb203..89a225c3f 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -51,7 +51,13 @@ jobs: run: uv sync --upgrade - name: Run tests (excluding integration and client_process) - run: uv run pytest --inline-snapshot=disable tests -m "not integration and not client_process" --numprocesses auto --maxprocesses 4 --dist worksteal + run: | + if [ "${{ matrix.os }}" == "windows-latest" ]; then + uv run pytest --inline-snapshot=disable tests -m "not integration and not client_process" -v + else + uv run pytest --inline-snapshot=disable tests -m "not integration and not client_process" --numprocesses auto --maxprocesses 4 --dist worksteal + fi + shell: bash - name: Run client process tests separately run: uv run pytest --inline-snapshot=disable tests -m "client_process" -x