We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46721bb commit 6962116Copy full SHA for 6962116
Lib/test/test_threading.py
@@ -2152,6 +2152,11 @@ def create_test(name):
2152
# Test long non-ASCII name (truncated)
2153
create_test("x" * (limit - 1) + "é€"),
2154
]
2155
+ if os_helper.FS_NONASCII:
2156
+ tests.append(create_test(f"nonascii:{os_helper.FS_NONASCII}"))
2157
+ if os_helper.TESTFN_UNENCODABLE:
2158
+ tests.append(create_test(os_helper.TESTFN_UNENCODABLE))
2159
+
2160
for name, expected in tests:
2161
with self.subTest(name=name, expected=expected):
2162
work_name = None
0 commit comments