Add TODO: RUSTPYTHON to skip reason

This commit is contained in:
Daniel Chiquito
2024-03-21 11:28:33 -04:00
parent 85c427b842
commit e315077630

2
Lib/test/test_os.py vendored
View File

@@ -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))