From e3150776300045da5ddf74afbd97abe89d7481bb Mon Sep 17 00:00:00 2001 From: Daniel Chiquito Date: Thu, 21 Mar 2024 11:28:33 -0400 Subject: [PATCH] Add TODO: RUSTPYTHON to skip reason --- Lib/test/test_os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index c880a9b90..21ce9bc32 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -4250,7 +4250,7 @@ class TestScandir(unittest.TestCase): # TODO: RUSTPPYTHON (AssertionError: TypeError not raised by ScandirIter) # TODO: See https://github.com/RustPython/RustPython/issues/5190 for skip rationale - @unittest.skip("skipping to avoid the unclosed scandir from squatting on file descriptors") + @unittest.skip("TODO: RUSTPYTHON, avoid the unclosed scandir from squatting on file descriptors") def test_uninstantiable(self): scandir_iter = os.scandir(self.path) self.assertRaises(TypeError, type(scandir_iter))