Skip to content

Commit

Permalink
add pip to ephemeral environment in test
Browse files Browse the repository at this point in the history
  • Loading branch information
dimbleby committed Apr 21, 2023
1 parent 3488c28 commit 982b3f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/masonry/builders/test_editable_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ def test_builder_setup_generation_runs_with_pip_editable(

poetry = Factory().create_poetry(extended_project)

# we need a venv with setuptools since we are verifying setup.py builds
with ephemeral_environment(flags={"no-setuptools": False}) as venv:
# we need a venv with pip and setuptools since we are verifying setup.py builds
with ephemeral_environment(flags={"no-setuptools": False, "no-pip": False}) as venv:
builder = EditableBuilder(poetry, venv, NullIO())
builder.build()

Expand Down

0 comments on commit 982b3f0

Please sign in to comment.