Skip to content

Commit fdab7e0

Browse files
committed
skip flaky test_strtod::test_parsing
1 parent 8c0be4b commit fdab7e0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Lib/test/test_strtod.py

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

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

0 commit comments

Comments
 (0)