Skip to content

Commit 1348fb5

Browse files
committed
Add step to re-run tests with pandas 2 in CI
1 parent 223aec8 commit 1348fb5

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,13 @@ jobs:
156156
cd $RUNNER_TEMP
157157
pytest -vv --showlocals $PROJECT_CWD
158158
159+
- name: "Re-run tests with pandas 2"
160+
run: |
161+
PROJECT_CWD=$PWD
162+
pip install "pandas>=2,<3"
163+
cd $RUNNER_TEMP
164+
pytest -vv --showlocals $PROJECT_CWD
165+
159166
- name: "Re-run tests without pandas"
160167
run: |
161168
PROJECT_CWD=$PWD

0 commit comments

Comments
 (0)