We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0af15c commit 2d370afCopy full SHA for 2d370af
.github/workflows/macos-windows.yml
@@ -15,7 +15,6 @@ on:
15
env:
16
PANDAS_CI: 1
17
PYTEST_TARGET: pandas
18
- PYTEST_WORKERS: auto
19
PATTERN: "not slow and not db and not network and not single_cpu"
20
21
@@ -36,6 +35,9 @@ jobs:
36
35
# https://github.community/t/concurrecy-not-work-for-push/183068/7
37
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.os }}
38
cancel-in-progress: true
+ env:
39
+ # GH 47443: PYTEST_WORKERS > 1 crashes Windows builds with memory related errors
40
+ PYTEST_WORKERS: ${{ matrix.os == 'macos-latest' && 'auto' || '1' }}
41
42
steps:
43
- name: Checkout
0 commit comments