From 2fa7cdb15653e8d6df079e24876419b2c896bf05 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 6 Dec 2022 13:45:16 -1000 Subject: [PATCH] chore: disable one more flakey glib test on py3.10 (#174) --- tests/client/test_properties.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/client/test_properties.py b/tests/client/test_properties.py index 79c0ba7..62f3907 100644 --- a/tests/client/test_properties.py +++ b/tests/client/test_properties.py @@ -96,7 +96,9 @@ async def test_aio_properties(): bus.disconnect() -@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" +) @pytest.mark.skipif(not has_gi, reason=skip_reason_no_gi) def test_glib_properties(): service_bus = glib.MessageBus().connect_sync()