Skip to content

Commit 93a6cc5

Browse files
committed
Skip possibly flaky test on Windows
1 parent 165df16 commit 93a6cc5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_strtod.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@ def test_bigcomp(self):
219219
s = '{}e{}'.format(digits, exponent)
220220
self.check_strtod(s)
221221

222-
# TODO: RUSTPYTHON
222+
@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, possibly flaky test on Windows?")
223+
# TODO: RUSTPYTHON, Incorrectly rounded str->float conversion for -07e-321
223224
@unittest.expectedFailure
224225
def test_parsing(self):
225226
# make '0' more likely to be chosen than other digits

0 commit comments

Comments
 (0)