feat: initial cpython 3.12 support (#207)
This commit is contained in:
@@ -124,7 +124,7 @@ async def test_aio_proxy_object():
|
||||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
sys.version_info[:3][1] in (10, 11), reason="segfaults on py3.10/py3.11"
|
||||
sys.version_info[:3][1] in (10, 11, 12), reason="segfaults on py3.10/py3.11"
|
||||
)
|
||||
@pytest.mark.skipif(not has_gi, reason=skip_reason_no_gi)
|
||||
def test_glib_proxy_object():
|
||||
|
||||
@@ -97,7 +97,7 @@ async def test_aio_properties():
|
||||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
sys.version_info[:3][1] in (10, 11), reason="segfaults on py3.10,py3.11"
|
||||
sys.version_info[:3][1] in (10, 11, 12), reason="segfaults on py3.10,py3.11,py3.12"
|
||||
)
|
||||
@pytest.mark.skipif(not has_gi, reason=skip_reason_no_gi)
|
||||
def test_glib_properties():
|
||||
|
||||
@@ -47,7 +47,7 @@ async def test_aio_big_message():
|
||||
|
||||
@pytest.mark.skipif(not has_gi, reason=skip_reason_no_gi)
|
||||
@pytest.mark.skipif(
|
||||
sys.version_info[:3][1] in (10, 11), reason="segfaults on py3.10,py3.11"
|
||||
sys.version_info[:3][1] in (10, 11, 12), reason="segfaults on py3.10,py3.11,py3.12"
|
||||
)
|
||||
def test_glib_big_message():
|
||||
"this tests that nonblocking reads and writes actually work for glib"
|
||||
|
||||
@@ -55,7 +55,7 @@ def test_standard_interfaces():
|
||||
|
||||
@pytest.mark.skipif(not has_gi, reason=skip_reason_no_gi)
|
||||
@pytest.mark.skipif(
|
||||
sys.version_info[:3][1] in (10, 11), reason="segfaults on py3.10,py3.11"
|
||||
sys.version_info[:3][1] in (10, 11, 12), reason="segfaults on py3.10,py3.11,py3.12"
|
||||
)
|
||||
def test_sending_messages_between_buses():
|
||||
bus1 = MessageBus().connect_sync()
|
||||
@@ -125,7 +125,7 @@ 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 (10, 11), reason="segfaults on py3.10,py3.11"
|
||||
sys.version_info[:3][1] in (10, 11, 12), reason="segfaults on py3.10,py3.11,py3.12"
|
||||
)
|
||||
def test_sending_signals_between_buses():
|
||||
bus1 = MessageBus().connect_sync()
|
||||
|
||||
@@ -71,7 +71,7 @@ async def test_name_requests():
|
||||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
sys.version_info[:3][1] in (10, 11), reason="segfaults on py3.10,py3.11"
|
||||
sys.version_info[:3][1] in (10, 11, 12), reason="segfaults on py3.10,py3.11,py3.12"
|
||||
)
|
||||
@pytest.mark.skipif(not has_gi, reason=skip_reason_no_gi)
|
||||
def test_request_name_glib():
|
||||
|
||||
Reference in New Issue
Block a user