diff --git a/Lib/test/test_glob.py b/Lib/test/test_glob.py index b72640bd871ba6..b52c12f4b6cf14 100644 --- a/Lib/test/test_glob.py +++ b/Lib/test/test_glob.py @@ -510,6 +510,10 @@ def fn(pat): @skip_unless_symlink class SymlinkLoopGlobTests(unittest.TestCase): + # gh-109959: On Linux, glob._isdir() and glob._lexists() can return False + # randomly when checking the "link/" symbolic link. + # https://github.com/python/cpython/issues/109959#issuecomment-2577550700 + @unittest.skip("flaky test") def test_selflink(self): tempdir = TESTFN + "_dir" os.makedirs(tempdir)