We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d89d8c commit 941dfc6Copy full SHA for 941dfc6
.github/workflows/code-checks.yml
@@ -11,8 +11,13 @@ on:
11
- 2.0.x
12
13
env:
14
+ COVERAGE: true
15
ENV_FILE: environment.yml
16
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"
21
22
permissions:
23
contents: read
@@ -160,6 +165,12 @@ jobs:
160
165
- name: Show environment
161
166
run: docker run --rm pandas-dev-env python -c "import pandas as pd; print(pd.show_versions())"
162
167
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
163
174
requirements-dev-text-installable:
164
175
name: Test install requirements-dev.txt
176
runs-on: ubuntu-22.04
0 commit comments