@@ -110,7 +110,7 @@ def test_seed_link_via_app_data(tmp_path, coverage_env, current_fastest, copies)
110
110
# Windows does not allow removing a executable while running it, so when uninstalling pip we need to do it via
111
111
# python -m pip
112
112
remove_cmd = [str (result .creator .exe ), "-m" , "pip" , * remove_cmd [1 :]]
113
- process = Popen ([* remove_cmd , "pip" , "wheel" ])
113
+ process = Popen ([* remove_cmd , "pip" ])
114
114
_ , __ = process .communicate ()
115
115
assert not process .returncode
116
116
# pip is greedy here, removing all packages removes the site-package too
@@ -208,13 +208,13 @@ def test_populated_read_only_cache_and_copied_app_data(tmp_path, current_fastest
208
208
209
209
210
210
@pytest .mark .slow
211
- @pytest .mark .parametrize ("pkg" , ["pip" , "setuptools" , "wheel" ])
211
+ @pytest .mark .parametrize ("pkg" , ["pip" , "setuptools" ])
212
212
@pytest .mark .usefixtures ("session_app_data" , "current_fastest" , "coverage_env" )
213
213
def test_base_bootstrap_link_via_app_data_no (tmp_path , pkg ):
214
- create_cmd = [str (tmp_path ), "--seeder" , "app-data" , f"--no-{ pkg } " , "--wheel" , "bundle" , "-- setuptools" , "bundle" ]
214
+ create_cmd = [str (tmp_path ), "--seeder" , "app-data" , f"--no-{ pkg } " , "--setuptools" , "bundle" ]
215
215
result = cli_run (create_cmd )
216
216
assert not (result .creator .purelib / pkg ).exists ()
217
- for key in {"pip" , "setuptools" , "wheel" } - {pkg }:
217
+ for key in {"pip" , "setuptools" } - {pkg }:
218
218
assert (result .creator .purelib / key ).exists ()
219
219
220
220
@@ -230,7 +230,7 @@ def test_app_data_parallel_fail(tmp_path: Path, mocker: MockerFixture) -> None:
230
230
exceptions = _run_parallel_threads (tmp_path )
231
231
assert len (exceptions ) == 2
232
232
for exception in exceptions :
233
- assert exception .startswith ("failed to build image wheel because:\n Traceback" )
233
+ assert exception .startswith ("failed to build image pip because:\n Traceback" )
234
234
assert "RuntimeError" in exception , exception
235
235
236
236
@@ -239,7 +239,7 @@ def _run_parallel_threads(tmp_path):
239
239
240
240
def _run (name ):
241
241
try :
242
- cli_run (["--seeder" , "app-data" , str (tmp_path / name ), "--no-pip" , "--no- setuptools" , "--wheel" , "bundle " ])
242
+ cli_run (["--seeder" , "app-data" , str (tmp_path / name ), "--no-setuptools" ])
243
243
except Exception as exception : # noqa: BLE001
244
244
as_str = str (exception )
245
245
exceptions .append (as_str )
0 commit comments