From b23086b25ddf57580cff4b86c8adb031e6203268 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 8 Dec 2022 13:33:52 -1000 Subject: [PATCH] chore: disable some more tests that segfault under py3.10 (#179) --- tests/test_glib_low_level.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/test_glib_low_level.py b/tests/test_glib_low_level.py index 791b761..dc8a875 100644 --- a/tests/test_glib_low_level.py +++ b/tests/test_glib_low_level.py @@ -54,7 +54,9 @@ def test_standard_interfaces(): @pytest.mark.skipif(not has_gi, reason=skip_reason_no_gi) -@pytest.mark.skipif(sys.version_info[:3][1] in (11,), reason="segfaults on py3.11") +@pytest.mark.skipif( + sys.version_info[:3][1] in (10, 11), reason="segfaults on py3.10,py3.11" +) def test_sending_messages_between_buses(): bus1 = MessageBus().connect_sync() bus2 = MessageBus().connect_sync() @@ -122,7 +124,9 @@ def test_sending_messages_between_buses(): @pytest.mark.skipif(not has_gi, reason=skip_reason_no_gi) -@pytest.mark.skipif(sys.version_info[:3][1] in (11,), reason="segfaults on py3.11") +@pytest.mark.skipif( + sys.version_info[:3][1] in (10, 11), reason="segfaults on py3.10,py3.11" +) def test_sending_signals_between_buses(): bus1 = MessageBus().connect_sync() bus2 = MessageBus().connect_sync()