Skip to content

Commit 9a7507f

Browse files
committed
Mark expectedFailure for windows
1 parent 87eaf47 commit 9a7507f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Lib/test/test_stat.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,11 @@ def test_file_attribute_constants(self):
239239
class TestFilemodeCStat(TestFilemode, unittest.TestCase):
240240
statmod = c_stat
241241

242+
# TODO: RUSTPYTHON
243+
if sys.platform == "win32":
244+
@unittest.expectedFailure
245+
def test_link(self):
246+
super().test_link()
242247

243248
class TestFilemodePyStat(TestFilemode, unittest.TestCase):
244249
statmod = py_stat

0 commit comments

Comments
 (0)