We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d89d8c commit ddc407bCopy full SHA for ddc407b
.github/workflows/code-checks.yml
@@ -11,8 +11,12 @@ 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
21
permissions:
22
contents: read
@@ -160,6 +164,12 @@ jobs:
160
164
- name: Show environment
161
165
run: docker run --rm pandas-dev-env python -c "import pandas as pd; print(pd.show_versions())"
162
166
167
+ - name: Install requirements-dev.txt
168
+ run: pip install -r requirements-dev.txt
169
+
170
+ - name: Test
171
+ uses: ./.github/actions/run-tests
172
163
173
requirements-dev-text-installable:
174
name: Test install requirements-dev.txt
175
runs-on: ubuntu-22.04
0 commit comments