Skip to content

Commit dac687b

Browse files
committed
mark hanging or failing tests
1 parent 84d2b58 commit dac687b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Lib/test/test_compileall.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,7 @@ def test_multiple_optimization_levels(self):
434434
except Exception:
435435
pass
436436

437+
@unittest.expectedFailureIfWindows("TODO: RUSTPYTHON")
437438
@os_helper.skip_unless_symlink
438439
def test_ignore_symlink_destination(self):
439440
# Create folders for allowed files, symlinks and prohibited area
@@ -699,6 +700,7 @@ def test_recursion_limit(self):
699700
self.assertCompiled(spamfn)
700701
self.assertCompiled(eggfn)
701702

703+
@unittest.skipIf(sys.platform == 'win32', 'hang')
702704
@os_helper.skip_unless_symlink
703705
def test_symlink_loop(self):
704706
# Currently, compileall ignores symlinks to directories.
@@ -899,6 +901,7 @@ def test_multiple_optimization_levels(self):
899901
except Exception:
900902
pass
901903

904+
@unittest.expectedFailureIfWindows("TODO: RUSTPYTHON")
902905
@os_helper.skip_unless_symlink
903906
def test_ignore_symlink_destination(self):
904907
# Create folders for allowed files, symlinks and prohibited area

0 commit comments

Comments
 (0)