Skip to content

Commit 135adfb

Browse files
authored
CI: Don't split tests on Windows Python 3.10 (#44235)
* CI: Don't split testson Windows Python 3.10 * Update python-dev.yml * Update python-dev.yml
1 parent 7bf75b0 commit 135adfb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/python-dev.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,12 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
os: [ubuntu-latest, macOS-latest, windows-latest]
27+
os: [ubuntu-latest, macOS-latest]
2828
pytest_target: ["pandas/tests/[a-h]*", "pandas/tests/[i-z]*"]
29+
include:
30+
# No need to split tests on windows
31+
- os: windows-latest
32+
pytest_target: pandas
2933

3034
name: actions-310-dev
3135
timeout-minutes: 80

0 commit comments

Comments
 (0)