Skip to content

Commit

Permalink
TST: ignore deprecation warning from dateutil in testing
Browse files Browse the repository at this point in the history
- Wo ignore this results in errors in Python 3.12
  • Loading branch information
mbaak committed Dec 28, 2023
1 parent b52ab28 commit bbe42a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
- name: Unit test
run: |
cd tests
pytest test_phik.py -v
pytest test_phik.py -v -W ignore::DeprecationWarning
- name: Integration test
run: |
cd tests
pytest integration -v
pytest integration -v -W ignore::DeprecationWarning
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
- name: Test with pytest
run: |
cd tests
pytest test_phik.py
pytest test_phik.py -W ignore::DeprecationWarning

0 comments on commit bbe42a2

Please sign in to comment.