Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
seed venv
  • Loading branch information
maurycy committed Oct 25, 2025
commit bb1101f5864123a8d55d998673bcbd1fbafeefba
2 changes: 1 addition & 1 deletion pyperformance/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def cleanup():
uv = shutil.which("uv")
if not uv:
raise RuntimeError("uv executable is required to provision test environments")
argv = [uv, "venv"]
argv = [uv, "venv", "--seed"]
if python:
argv.extend(["--python", python])
argv.append(root)
Expand Down
Loading