We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71d6078 commit 61fd3a6Copy full SHA for 61fd3a6
1 file changed
tests/interaction/transports/test_stdio.py
@@ -92,7 +92,8 @@ async def collect(params: LoggingMessageNotificationParams) -> None:
92
# seeing it proves the process exited on its own rather than via the transport's terminate
93
# escalation, without a timing-based assertion. The capture itself proves stderr passthrough:
94
# the transport routes the child's stderr to the caller's `errlog` without consuming it.
95
- assert captured_stderr == snapshot("stdio-echo: clean exit\n")
+ # Match the trailing line only: older anyio on py3.14 lowest-direct can emit SyntaxWarning to stderr.
96
+ assert captured_stderr.endswith("stdio-echo: clean exit\n")
97
98
99
@requirement("transport:stdio:stream-purity")
0 commit comments