Skip to content

Commit 4e9a0b6

Browse files
committed
Fix signal tests.
1 parent 411406c commit 4e9a0b6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/test/test_signal.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import unittest
1515
from test import support
1616
from test.support import (
17-
is_apple, is_apple_mobile, os_helper, threading_helper
17+
is_apple, is_apple_mobile, os_helper, threading_helper, force_not_colorized
1818
)
1919
from test.support.script_helper import assert_python_ok, spawn_python
2020
try:
@@ -353,6 +353,7 @@ def check_signum(signals):
353353

354354
@unittest.skipIf(_testcapi is None, 'need _testcapi')
355355
@unittest.skipUnless(hasattr(os, "pipe"), "requires os.pipe()")
356+
@force_not_colorized
356357
def test_wakeup_write_error(self):
357358
# Issue #16105: write() errors in the C signal handler should not
358359
# pass silently.

0 commit comments

Comments
 (0)