Skip to content

Commit 3483e9e

Browse files
committed
fix: replace uv run call in update-demo nox session with install_and_run_script
1 parent 782ea9b commit 3483e9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def update_demo(session: Session, demo: RepoMetadata) -> None:
207207
args.extend(session.posargs)
208208

209209
demo_env: dict[str, Any] = {f"ROBUST_DEMO__{key.upper()}": value for key, value in asdict(demo).items()}
210-
session.run("uv", "run", UPDATE_DEMO_SCRIPT, *args, env=demo_env)
210+
session.install_and_run_script(UPDATE_DEMO_SCRIPT, *args, env=demo_env)
211211

212212

213213
@nox.parametrize(

0 commit comments

Comments
 (0)