From 7edfc38b6314337dd0cec2bf92e9e07f0dfdfeba Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 6 Dec 2022 13:39:02 -1000 Subject: [PATCH] chore: disable flakey glib test on newer python (#173) --- tests/client/test_methods.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/client/test_methods.py b/tests/client/test_methods.py index e7d7a4a..5f6e89f 100644 --- a/tests/client/test_methods.py +++ b/tests/client/test_methods.py @@ -123,7 +123,9 @@ async def test_aio_proxy_object(): bus2.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_proxy_object(): bus_name = "glib.client.test.methods"