Disable parallel test execution on Windows (#2128)

This commit is contained in:
Jeremiah Lowin 2025-10-17 11:28:42 -04:00 committed by GitHub
commit d4837b41c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,7 +48,7 @@ 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: uv run pytest --inline-snapshot=disable tests -m "not integration and not client_process" ${{ matrix.os == 'windows-latest' && '' || '--numprocesses auto --maxprocesses 4 --dist worksteal' }}
- name: Run client process tests separately
run: uv run pytest --inline-snapshot=disable tests -m "client_process" -x