From: Dong-hee Na Date: Fri, 4 Sep 2020 08:47:40 +0000 (+0000) Subject: bpo-41700: Skip test if the locale is not supported (GH-22081) X-Git-Tag: v3.10.0a1~177 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54a66ade2067c373d31003ad260e1b7d14c81564;p=thirdparty%2FPython%2Fcpython.git bpo-41700: Skip test if the locale is not supported (GH-22081) --- diff --git a/Lib/test/test_c_locale_coercion.py b/Lib/test/test_c_locale_coercion.py index 8340a9eb2ea3..fcc85992345d 100644 --- a/Lib/test/test_c_locale_coercion.py +++ b/Lib/test/test_c_locale_coercion.py @@ -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 :