chore: disable some more tests that segfault under py3.10 (#179)
This commit is contained in:
parent
069b65bea0
commit
b23086b25d
@ -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()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user