From 93a6cc55874642eaad0fd07880b2f91fd38cdf2d Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Wed, 22 Jun 2022 18:40:27 -0400 Subject: [PATCH] Skip possibly flaky test on Windows --- Lib/test/test_strtod.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_strtod.py b/Lib/test/test_strtod.py index dec9d339b..5bf322604 100644 --- a/Lib/test/test_strtod.py +++ b/Lib/test/test_strtod.py @@ -219,7 +219,8 @@ class StrtodTests(unittest.TestCase): s = '{}e{}'.format(digits, exponent) self.check_strtod(s) - # TODO: RUSTPYTHON + @unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, possibly flaky test on Windows?") + # TODO: RUSTPYTHON, Incorrectly rounded str->float conversion for -07e-321 @unittest.expectedFailure def test_parsing(self): # make '0' more likely to be chosen than other digits