Skip to content

Commit 556ecd7

Browse files
committed
Skip tests on WASI
1 parent cc30e41 commit 556ecd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_builtin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2993,7 +2993,7 @@ def test_namespace_order(self):
29932993

29942994
def load_tests(loader, tests, pattern):
29952995
import doctest
2996-
if sys.float_repr_style == 'short':
2996+
if sys.float_repr_style == 'short' and not support.is_wasi:
29972997
tests.addTest(doctest.DocTestSuite(builtins))
29982998
lib_tests = os.path.join(support.REPO_ROOT, 'Doc/library/stdtypes.rst')
29992999
if os.path.exists(lib_tests):

0 commit comments

Comments
 (0)