Skip to content

Commit 6a34c90

Browse files
committed
mark failing tests
1 parent 89b9250 commit 6a34c90

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Lib/test/test_venv.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ def isdir(self, *args):
119119
fn = self.get_env_file(*args)
120120
self.assertTrue(os.path.isdir(fn))
121121

122+
# TODO: RUSTPYTHON
123+
@unittest.expectedFailure
122124
def test_defaults_with_str_path(self):
123125
"""
124126
Test the create function with default arguments and a str path.
@@ -127,6 +129,8 @@ def test_defaults_with_str_path(self):
127129
self.run_with_capture(venv.create, self.env_dir)
128130
self._check_output_of_default_create()
129131

132+
# TODO: RUSTPYTHON
133+
@unittest.expectedFailure
130134
def test_defaults_with_pathlike(self):
131135
"""
132136
Test the create function with default arguments and a path-like path.
@@ -410,6 +414,8 @@ def test_unoverwritable_fails(self):
410414
self.assertRaises((ValueError, OSError), venv.create, self.env_dir)
411415
self.clear_directory(self.env_dir)
412416

417+
# TODO: RUSTPYTHON
418+
@unittest.expectedFailure
413419
def test_upgrade(self):
414420
"""
415421
Test upgrading an existing environment directory.
@@ -671,6 +677,8 @@ def test_pathsep_error(self):
671677

672678
@unittest.skipIf(os.name == 'nt', 'not relevant on Windows')
673679
@requireVenvCreate
680+
# TODO: RUSTPYTHON
681+
@unittest.expectedFailure
674682
def test_zippath_from_non_installed_posix(self):
675683
"""
676684
Test that when create venv from non-installed python, the zip path

0 commit comments

Comments
 (0)