Fix Linux CI failure in test_posixpath

This commit is contained in:
Padraic Fanning
2021-10-17 21:06:34 -04:00
parent 498f9e8cf9
commit fdc74a12ed

View File

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