Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit 10e659c

Browse files
committed
Had the test upgrade pip before installing required packages
1 parent acb8293 commit 10e659c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/test_adopt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def test_new_module(tmp_path: Path):
5151
assert (module / "src" / "my_module").is_dir()
5252
assert check_output("git", "branch", cwd=module).strip() == "* main"
5353
check_output("python", "-m", "venv", "venv", cwd=module)
54+
check_output("venv/bin/pip", "install", "--upgrade", "pip", cwd=module)
5455
check_output("venv/bin/pip", "install", ".[dev]", cwd=module)
5556
check_output(
5657
"venv/bin/python",

0 commit comments

Comments
 (0)