From e03250618632a0a4b596b1a073693d2a235b4cf4 Mon Sep 17 00:00:00 2001 From: Mischan Toosarani-Hausberger Date: Thu, 14 Nov 2024 19:13:02 +0100 Subject: [PATCH] fix pytest skip for x86 --- tests/test_dotnet_signals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dotnet_signals.py b/tests/test_dotnet_signals.py index 4fcec508b..9f938107c 100644 --- a/tests/test_dotnet_signals.py +++ b/tests/test_dotnet_signals.py @@ -55,7 +55,7 @@ def run_dotnet_native_crash(tmp_path): @pytest.mark.skipif( - sys.platform != "linux" and not os.environ.get("TEST_X86"), + sys.platform != "linux" and os.environ.get("TEST_X86"), reason="dotnet signal handling is currently only supported on 64-bit Linux", ) def test_dotnet_signals_inproc(cmake):