diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-08 23:56:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 23:56:53 (GMT) |
commit | 2fafc3d5c6d720c9b9a4803dde60607fa44b89ce (patch) | |
tree | dbcccd9ce0dcb30bc819b71981bf0e34cc32b63b | |
parent | ac8409b38b5a11d88b2cfe4e38a712e8967ec843 (diff) | |
download | cpython-2fafc3d5c6d720c9b9a4803dde60607fa44b89ce.zip cpython-2fafc3d5c6d720c9b9a4803dde60607fa44b89ce.tar.gz cpython-2fafc3d5c6d720c9b9a4803dde60607fa44b89ce.tar.bz2 |
gh-108996: Skip broken test_msvcrt for now (#109169)
-rw-r--r-- | Lib/test/test_msvcrt.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_msvcrt.py b/Lib/test/test_msvcrt.py index adf4e26..3a63de3 100644 --- a/Lib/test/test_msvcrt.py +++ b/Lib/test/test_msvcrt.py @@ -2,6 +2,8 @@ import os import sys import unittest +raise unittest.SkipTest("FIXME! broken test see: https://github.com/python/cpython/pull/109004") + from test.support import os_helper from test.support.os_helper import TESTFN, TESTFN_ASCII |