We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1407521 commit 6f5792eCopy full SHA for 6f5792e
1 file changed
Lib/test/test_venv.py
@@ -627,6 +627,14 @@ def test_broken_symlink_in_existing_venv(self):
627
self.assertTrue(os.path.islink(python))
628
self.assertTrue(os.path.exists(python))
629
630
+ rmtree(self.env_dir)
631
+ os.makedirs(bindir)
632
+ os.symlink('/path/to/deleted/conda/env/bin/python3', python)
633
+ builder = venv.EnvBuilder(with_pip=False, symlinks=False)
634
+ self.run_with_capture(builder.create, self.env_dir)
635
+ self.assertFalse(os.path.islink(python))
636
+ self.assertTrue(os.path.exists(python))
637
+
638
@requireVenvCreate
639
def test_multiprocessing(self):
640
"""
0 commit comments