Skip to content

Commit 663622e

Browse files
committed
Test install pip without build isolation
Because pip now uses flit_core as build backend.
1 parent 7b08069 commit 663622e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/functional/test_completion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def script_with_launchers(
9494
tmpdir = tmpdir_factory.mktemp("script_with_launchers")
9595
script = script_factory(tmpdir.joinpath("workspace"))
9696
# Re-install pip so we get the launchers.
97-
script.pip_install_local("-f", common_wheels, pip_src)
97+
script.pip("install", "--no-index", "-f", common_wheels, pip_src)
9898
return script
9999

100100

tests/functional/test_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def test_pip_second_command_line_interface_works(
291291
Check if ``pip<PYVERSION>`` commands behaves equally
292292
"""
293293
# Re-install pip so we get the launchers.
294-
script.pip_install_local("-f", common_wheels, pip_src)
294+
script.pip("install", "--no-index", "-f", common_wheels, pip_src)
295295
args = [f"pip{pyversion}"]
296296
args.extend(["install", "INITools==0.2"])
297297
args.extend(["-f", os.fspath(data.packages)])

0 commit comments

Comments
 (0)