Skip to content

CI: Test development container #52349

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

Closed
Closed
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
10 changes: 10 additions & 0 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ on:
- 2.0.x

env:
COVERAGE: true
ENV_FILE: environment.yml
PANDAS_CI: 1
PYTEST_TARGET: pandas
PYTEST_WORKERS: 'auto'
PATTERN: "not slow and not db and not network and not single_cpu"

permissions:
contents: read
Expand Down Expand Up @@ -160,6 +164,12 @@ jobs:
- name: Show environment
run: docker run --rm pandas-dev-env python -c "import pandas as pd; print(pd.show_versions())"

- name: Install requirements-dev.txt
run: pip install -r requirements-dev.txt

- name: Test
uses: ./.github/actions/run-tests

requirements-dev-text-installable:
name: Test install requirements-dev.txt
runs-on: ubuntu-22.04
Expand Down