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 e8b92dfCopy full SHA for e8b92df
.github/workflows/code-checks.yml
@@ -13,6 +13,9 @@ on:
13
env:
14
ENV_FILE: environment.yml
15
PANDAS_CI: 1
16
+ PYTEST_TARGET: pandas
17
+ COVERAGE: true
18
+ test_args: "-W error::DeprecationWarning -W error::FutureWarning"
19
20
permissions:
21
contents: read
@@ -160,6 +163,12 @@ jobs:
160
163
- name: Show environment
161
164
run: docker run --rm pandas-dev-env python -c "import pandas as pd; print(pd.show_versions())"
162
165
166
+ - name: Install requirements-dev.txt
167
+ run: pip install -r requirements-dev.txt
168
+
169
+ - name: Test
170
+ uses: ./.github/actions/run-tests
171
172
requirements-dev-text-installable:
173
name: Test install requirements-dev.txt
174
runs-on: ubuntu-22.04
0 commit comments