mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
bpo-31380: Skip test_httpservers test_undecodable_file on macOS. (#4720)
The undecodable file name cannot be created on macOS APFS file systems.
This commit is contained in:
parent
e6f8a7378d
commit
b3edde8dd4
2 changed files with 3 additions and 1 deletions
|
|
@ -384,7 +384,8 @@ def close_conn():
|
|||
reader.close()
|
||||
return body
|
||||
|
||||
@support.requires_mac_ver(10, 5)
|
||||
@unittest.skipIf(sys.platform == 'darwin',
|
||||
'undecodable name cannot always be decoded on macOS')
|
||||
@unittest.skipIf(sys.platform == 'win32',
|
||||
'undecodable name cannot be decoded on win32')
|
||||
@unittest.skipUnless(support.TESTFN_UNDECODABLE,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue