From fdc74a12edc848cdf8ef936c314fdbffac275abe Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Sun, 17 Oct 2021 21:06:34 -0400 Subject: [PATCH] Fix Linux CI failure in test_posixpath --- Lib/test/test_posixpath.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index c1ee53c26..395f32c53 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -637,6 +637,11 @@ class PosixCommonTest(test_genericpath.CommonTest, unittest.TestCase): # TODO: RUSTPYTHON import sys + @unittest.skipIf(sys.platform.startswith("linux") and os.getenv("CI"), "TODO: RUSTPYTHON, flaky test") + def test_filetime(self): + super().test_filetime() + + # TODO: RUSTPYTHON if sys.platform.startswith("linux"): @unittest.expectedFailure def test_nonascii_abspath(self):