Skip to content

Commit 1b5c076

Browse files
committed
Remove a no-longer-relevant test
1 parent e22ff2f commit 1b5c076

File tree

1 file changed

+0
-31
lines changed

1 file changed

+0
-31
lines changed

tests/functional/test_wheel.py

-31
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
"""'pip wheel' tests"""
22
import os
33
import re
4-
import sys
5-
from os.path import exists
64

75
import pytest
86

@@ -240,35 +238,6 @@ def test_pip_wheel_fail(script, data):
240238
assert result.returncode != 0
241239

242240

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-
272241
def test_pip_wheel_source_deps(script, data):
273242
"""
274243
Test 'pip wheel' finds and builds source archive dependencies

0 commit comments

Comments
 (0)