Skip to content

Commit 5fb45c9

Browse files
Backport PR #44204: CI: Python Dev build (#44208)
Co-authored-by: Ali McMaster <[email protected]>
1 parent 831a63b commit 5fb45c9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/python-dev.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ env:
1717
PANDAS_CI: 1
1818
PATTERN: "not slow and not network and not clipboard"
1919
COVERAGE: true
20-
PYTEST_TARGET: pandas
2120

2221
jobs:
2322
build:
@@ -26,12 +25,13 @@ jobs:
2625
fail-fast: false
2726
matrix:
2827
os: [ubuntu-latest, macOS-latest, windows-latest]
28+
pytest_target: ["pandas/tests/[a-h]*", "pandas/tests/[i-z]*"]
2929

3030
name: actions-310-dev
31-
timeout-minutes: 60
31+
timeout-minutes: 80
3232

3333
concurrency:
34-
group: ${{ github.ref }}-${{ matrix.os }}-dev
34+
group: ${{ github.ref }}-${{ matrix.os }}-${{ matrix.pytest_target }}-dev
3535
cancel-in-progress: ${{github.event_name == 'pull_request'}}
3636

3737
steps:
@@ -63,6 +63,8 @@ jobs:
6363
python -c "import pandas; pandas.show_versions();"
6464
6565
- name: Test with pytest
66+
env:
67+
PYTEST_TARGET: ${{ matrix.pytest_target }}
6668
shell: bash
6769
run: |
6870
ci/run_tests.sh

0 commit comments

Comments
 (0)