From 3b852bd98aa1923affecc3b177ff2c89ea9b9ea2 Mon Sep 17 00:00:00 2001 From: zapabob Date: Sun, 31 May 2026 11:21:14 +0900 Subject: [PATCH] test: skip terminal cleanup collection on non-posix --- tests/test_terminal_process_cleanup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_terminal_process_cleanup.py b/tests/test_terminal_process_cleanup.py index a53710819..a9a056c51 100644 --- a/tests/test_terminal_process_cleanup.py +++ b/tests/test_terminal_process_cleanup.py @@ -5,6 +5,9 @@ import time import pytest +if os.name != "posix": + pytest.skip("terminal process cleanup tests require POSIX terminal support", allow_module_level=True) + import api.terminal as terminal