• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:bootstrap

22             self.touch(tmpdir, "pip-1.2.3b1-py2.py3-none-any.whl")
23 self.touch(tmpdir, "setuptools-49.1.3-py3-none-any.whl")
43 setuptools_filename = "setuptools-49.1.3-py3-none-any.whl"
44 pip_filename = "pip-20.2.2-py2.py3-none-any.whl"
50 self.touch(tmpdir, "wheel-0.34.2-py2.py3-none-any.whl")
90 ensurepip.bootstrap()
94 "install", "--no-cache-dir", "--no-index", "--find-links",
104 ensurepip.bootstrap(root="/foo/bar/")
108 "install", "--no-cache-dir", "--no-index", "--find-links",
109 unittest.mock.ANY, "--root", "/foo/bar/",
116 ensurepip.bootstrap(user=True)
120 "install", "--no-cache-dir", "--no-index", "--find-links",
121 unittest.mock.ANY, "--user", "setuptools", "pip",
127 ensurepip.bootstrap(upgrade=True)
131 "install", "--no-cache-dir", "--no-index", "--find-links",
132 unittest.mock.ANY, "--upgrade", "setuptools", "pip",
138 ensurepip.bootstrap(verbosity=1)
142 "install", "--no-cache-dir", "--no-index", "--find-links",
143 unittest.mock.ANY, "-v", "setuptools", "pip",
149 ensurepip.bootstrap(verbosity=2)
153 "install", "--no-cache-dir", "--no-index", "--find-links",
154 unittest.mock.ANY, "-vv", "setuptools", "pip",
160 ensurepip.bootstrap(verbosity=3)
164 "install", "--no-cache-dir", "--no-index", "--find-links",
165 unittest.mock.ANY, "-vvv", "setuptools", "pip",
171 ensurepip.bootstrap()
175 ensurepip.bootstrap(altinstall=True)
179 ensurepip.bootstrap(default_pip=True)
184 ensurepip.bootstrap(altinstall=True, default_pip=True)
191 ensurepip.bootstrap()
197 ensurepip.bootstrap()
241 "uninstall", "-y", "--disable-pip-version-check", "pip",
252 "uninstall", "-y", "--disable-pip-version-check", "-v", "pip",
263 "uninstall", "-y", "--disable-pip-version-check", "-vv", "pip",
274 "uninstall", "-y", "--disable-pip-version-check", "-vvv",
304 ensurepip._main(["--version"])
314 "install", "--no-cache-dir", "--no-index", "--find-links",
335 ensurepip._uninstall._main(["--version"])
346 "uninstall", "-y", "--disable-pip-version-check", "pip",