mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-41700: Skip test if the locale is not supported (GH-22081)
This commit is contained in:
parent
cdbff3527c
commit
54a66ade20
1 changed files with 4 additions and 1 deletions
|
@ -407,7 +407,10 @@ class LocaleCoercionTests(_LocaleHandlingTestCase):
|
|||
# skip the test if the LC_CTYPE locale is C or coerced
|
||||
old_loc = locale.setlocale(locale.LC_CTYPE, None)
|
||||
self.addCleanup(locale.setlocale, locale.LC_CTYPE, old_loc)
|
||||
loc = locale.setlocale(locale.LC_CTYPE, "")
|
||||
try:
|
||||
loc = locale.setlocale(locale.LC_CTYPE, "")
|
||||
except locale.Error as e:
|
||||
self.skipTest(str(e))
|
||||
if loc == "C":
|
||||
self.skipTest("test requires LC_CTYPE locale different than C")
|
||||
if loc in TARGET_LOCALES :
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue