Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions newsfragments/1189.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Re-enable the ``test_ipv6_tcp_listen_and_dial`` integration test. The skip was
added when ``listen()`` took an external nursery; PR #1308 switched to an
internal system task, making IPv6 listen/dial work correctly. The test now
passes without modification.
4 changes: 0 additions & 4 deletions tests/core/transport/test_tcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,6 @@ async def test_ipv6_tcp_dial_fails_on_nonexistent_server():


@pytest.mark.trio
@pytest.mark.skip(
reason="IPv6 listener hangs - trio.serve_tcp may need IPv6-specific configuration"
)
# TODO: Open follow-up issue to re-enable when IPv6 listen/dial is stable
async def test_ipv6_tcp_listen_and_dial(nursery):
"""Test that TCP transport can listen and dial using IPv6 addresses."""
transport = TCP()
Expand Down
Loading