From c19137b7563454fa99f30804c236a04573f771df Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Fri, 30 Aug 2024 16:42:33 +0200 Subject: [PATCH] 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. --- .github/workflows/build_lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_lint.yml b/.github/workflows/build_lint.yml index efa3d649f3f..d407b178dce 100644 --- a/.github/workflows/build_lint.yml +++ b/.github/workflows/build_lint.yml @@ -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