Skip to content

Backport PR #44204 on branch 1.3.x (CI: Python Dev build) #44208

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/python-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ env:
PANDAS_CI: 1
PATTERN: "not slow and not network and not clipboard"
COVERAGE: true
PYTEST_TARGET: pandas

jobs:
build:
Expand All @@ -26,12 +25,13 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
pytest_target: ["pandas/tests/[a-h]*", "pandas/tests/[i-z]*"]

name: actions-310-dev
timeout-minutes: 60
timeout-minutes: 80

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

steps:
Expand Down Expand Up @@ -63,6 +63,8 @@ jobs:
python -c "import pandas; pandas.show_versions();"

- name: Test with pytest
env:
PYTEST_TARGET: ${{ matrix.pytest_target }}
shell: bash
run: |
ci/run_tests.sh
Expand Down