Skip to content

Commit

Permalink
pytest: Don't raise FutureWarning to Error
Browse files Browse the repository at this point in the history
FutureWarning can stay a FutureWarning in the CI, it doesn't need to be raised to an Error (note it also isn't suppresed). Otherwise we can't use experimental features in examples.
  • Loading branch information
EwoutH committed Aug 30, 2024
1 parent 4eff582 commit 861d6b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ jobs:
- name: Test examples
run: |
cd mesa-examples
pytest -rA -Werror test_examples.py
pytest -rA -Werror -Wdefault::FutureWarning test_examples.py

0 comments on commit 861d6b3

Please sign in to comment.