Skip possibly flaky test on Windows

This commit is contained in:
Padraic Fanning
2022-06-22 18:40:27 -04:00
parent 165df16945
commit 93a6cc5587

View File

@@ -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