Commit 1b5c076 1 parent e22ff2f commit 1b5c076 Copy full SHA for 1b5c076
File tree 1 file changed +0
-31
lines changed
1 file changed +0
-31
lines changed Original file line number Diff line number Diff line change 1
1
"""'pip wheel' tests"""
2
2
import os
3
3
import re
4
- import sys
5
- from os .path import exists
6
4
7
5
import pytest
8
6
@@ -240,35 +238,6 @@ def test_pip_wheel_fail(script, data):
240
238
assert result .returncode != 0
241
239
242
240
243
- def test_no_clean_option_blocks_cleaning_after_wheel (
244
- script ,
245
- data ,
246
- resolver_variant ,
247
- ):
248
- """
249
- Test --no-clean option blocks cleaning after wheel build
250
- """
251
- build = script .venv_path / "build"
252
- result = script .pip (
253
- "wheel" ,
254
- "--no-clean" ,
255
- "--no-index" ,
256
- "--build" ,
257
- build ,
258
- f"--find-links={ data .find_links } " ,
259
- "simple" ,
260
- expect_temp = True ,
261
- # TODO: allow_stderr_warning is used for the --build deprecation,
262
- # remove it when removing support for --build
263
- allow_stderr_warning = True ,
264
- )
265
-
266
- if resolver_variant == "legacy" :
267
- build = build / "simple"
268
- message = f"build/simple should still exist { result } "
269
- assert exists (build ), message
270
-
271
-
272
241
def test_pip_wheel_source_deps (script , data ):
273
242
"""
274
243
Test 'pip wheel' finds and builds source archive dependencies
You can’t perform that action at this time.
0 commit comments