Skip to content

Commit 711b5b8

Browse files
committed
Mark windows failing tests from test_sysconfig
1 parent 59e113c commit 711b5b8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Lib/test/test_sysconfig.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@ def test_posix_venv_scheme(self):
163163
sysconfig_includedir = sysconfig.get_path('include', scheme='posix_venv')
164164
self.assertTrue(sysconfig_includedir.startswith(incpath + os.sep))
165165

166+
# TODO: RUSTPYTHON
167+
if sys.platform == "win32":
168+
test_posix_venv_scheme = unittest.expectedFailure(test_posix_venv_scheme)
169+
166170
def test_nt_venv_scheme(self):
167171
# The following directories were hardcoded in the venv module
168172
# before bpo-45413, here we assert the posix_venv scheme does not regress
@@ -179,6 +183,10 @@ def test_nt_venv_scheme(self):
179183
self.assertEqual(incpath, sysconfig.get_path('include', scheme='nt_venv'))
180184
self.assertEqual(libpath, sysconfig.get_path('purelib', scheme='nt_venv'))
181185

186+
# TODO: RUSTPYTHON
187+
if sys.platform == "win32":
188+
test_nt_venv_scheme = unittest.expectedFailure(test_nt_venv_scheme)
189+
182190
def test_venv_scheme(self):
183191
if sys.platform == 'win32':
184192
self.assertEqual(

0 commit comments

Comments
 (0)