Skip to content

Commit 91e8d28

Browse files
committed
skip test on Windows
Windows tests are failing when creating the environment with exit code `3221225781` / `0xC0000135` / `STATUS_DLL_NOT_FOUND` Thus this test can't be run on Windows since a simple symlink to python executable does not seem to work.
1 parent a92616e commit 91e8d28

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/test_venv.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -745,6 +745,7 @@ def test_cli_without_scm_ignore_files(self):
745745
self.get_text_file_contents('.gitignore')
746746

747747
@requires_subprocess()
748+
@unittest.skipIf(os.name == 'nt', 'not relevant on Windows')
748749
@unittest.skipUnless(can_symlink(), 'Needs symlinks')
749750
def test_executable_symlink(self):
750751
"""

0 commit comments

Comments
 (0)