(self)
| 922 | self.assert_pip_not_installed() |
| 923 | |
| 924 | def test_explicit_no_pip(self): |
| 925 | rmtree(self.env_dir) |
| 926 | self.run_with_capture(venv.create, self.env_dir, with_pip=False) |
| 927 | self.assert_pip_not_installed() |
| 928 | |
| 929 | def test_devnull(self): |
| 930 | # Fix for issue #20053 uses os.devnull to force a config file to |
nothing calls this directly
no test coverage detected