From 2b05a19952a81f409336a9cff9364535bc6e62ff Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Wed, 6 Nov 2024 15:20:05 +0100 Subject: [PATCH] GHA: Workaround for macos segfaults (#2572) Ignore warnings during macos pytest runs. --- .github/workflows/test_python_cplusplus.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_python_cplusplus.yml b/.github/workflows/test_python_cplusplus.yml index 284a170031..fcb1067b85 100644 --- a/.github/workflows/test_python_cplusplus.yml +++ b/.github/workflows/test_python_cplusplus.yml @@ -293,7 +293,8 @@ jobs: - name: Python tests run: | - scripts/run-python-tests.sh \ + # ignore warnings until https://github.com/swig/swig/issues/3061 is resolved + scripts/run-python-tests.sh -W ignore:: \ test_pregenerated_models.py \ test_splines_short.py \ test_misc.py @@ -355,7 +356,8 @@ jobs: - name: Python tests run: | - scripts/run-python-tests.sh \ + # ignore warnings until https://github.com/swig/swig/issues/3061 is resolved + scripts/run-python-tests.sh -W ignore:: \ --ignore=test_pregenerated_models.py \ --ignore=test_splines_short.py \ --ignore=test_misc.py