Skip to content

Commit 59f1e59

Browse files
committed
Mark failing tests of test_site
1 parent fa3010a commit 59f1e59

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Lib/test/test_site.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,8 @@ def test_license_exists_at_url(self):
488488

489489
class StartupImportTests(unittest.TestCase):
490490

491+
# TODO: RUSTPYTHON
492+
@unittest.expectedFailure
491493
@support.requires_subprocess()
492494
def test_startup_imports(self):
493495
# Get sys.path in isolated mode (python3 -I)
@@ -604,6 +606,8 @@ def _calc_sys_path_for_underpth_nosite(self, sys_prefix, lines):
604606
sys_path.append(abs_path)
605607
return sys_path
606608

609+
# TODO: RUSTPYTHON
610+
@unittest.expectedFailure
607611
@support.requires_subprocess()
608612
def test_underpth_basic(self):
609613
libpath = test.support.STDLIB_DIR
@@ -625,6 +629,8 @@ def test_underpth_basic(self):
625629
"sys.path is incorrect"
626630
)
627631

632+
# TODO: RUSTPYTHON
633+
@unittest.expectedFailure
628634
@support.requires_subprocess()
629635
def test_underpth_nosite_file(self):
630636
libpath = test.support.STDLIB_DIR
@@ -654,6 +660,8 @@ def test_underpth_nosite_file(self):
654660
"sys.path is incorrect"
655661
)
656662

663+
# TODO: RUSTPYTHON
664+
@unittest.expectedFailure
657665
@support.requires_subprocess()
658666
def test_underpth_file(self):
659667
libpath = test.support.STDLIB_DIR
@@ -679,6 +687,8 @@ def test_underpth_file(self):
679687
)], env=env)
680688
self.assertTrue(rc, "sys.path is incorrect")
681689

690+
# TODO: RUSTPYTHON
691+
@unittest.expectedFailure
682692
@support.requires_subprocess()
683693
def test_underpth_dll_file(self):
684694
libpath = test.support.STDLIB_DIR

0 commit comments

Comments
 (0)