Skip to content

Commit 861d6b3

Browse files
committed
pytest: Don't raise FutureWarning to Error
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.
1 parent 4eff582 commit 861d6b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@ jobs:
8686
- name: Test examples
8787
run: |
8888
cd mesa-examples
89-
pytest -rA -Werror test_examples.py
89+
pytest -rA -Werror -Wdefault::FutureWarning test_examples.py

0 commit comments

Comments
 (0)