We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30814ee commit f967260Copy full SHA for f967260
.github/workflows/unit-tests.yml
@@ -173,7 +173,7 @@ jobs:
173
uses: ./.github/actions/run-tests
174
env:
175
PATTERN: 'single_cpu'
176
- PYTEST_WORKERS: 1
+ PYTEST_WORKERS: 0
177
if: ${{ matrix.pattern == '' && (always() && steps.build.outcome == 'success')}}
178
179
macos-windows:
@@ -193,8 +193,8 @@ jobs:
193
PANDAS_CI: 1
194
PYTEST_TARGET: pandas
195
PATTERN: "not slow and not db and not network and not single_cpu"
196
- # GH 47443: PYTEST_WORKERS > 1 crashes Windows builds with memory related errors
197
- PYTEST_WORKERS: ${{ matrix.os == 'macos-latest' && 'auto' || '1' }}
+ # GH 47443: PYTEST_WORKERS > 0 crashes Windows builds with memory related errors
+ PYTEST_WORKERS: ${{ matrix.os == 'macos-latest' && 'auto' || '0' }}
198
199
steps:
200
- name: Checkout
0 commit comments