mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Skip possibly flaky test on Windows
This commit is contained in:
3
Lib/test/test_strtod.py
vendored
3
Lib/test/test_strtod.py
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user