Skip to content

Commit 941dfc6

Browse files
committed
CI: Test development container
1 parent 6d89d8c commit 941dfc6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/code-checks.yml

+11
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,13 @@ on:
1111
- 2.0.x
1212

1313
env:
14+
COVERAGE: true
1415
ENV_FILE: environment.yml
1516
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+
test_args: "-W error::DeprecationWarning -W error::FutureWarning"
1621

1722
permissions:
1823
contents: read
@@ -160,6 +165,12 @@ jobs:
160165
- name: Show environment
161166
run: docker run --rm pandas-dev-env python -c "import pandas as pd; print(pd.show_versions())"
162167

168+
- name: Install requirements-dev.txt
169+
run: pip install -r requirements-dev.txt
170+
171+
- name: Test
172+
uses: ./.github/actions/run-tests
173+
163174
requirements-dev-text-installable:
164175
name: Test install requirements-dev.txt
165176
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)