diff --git a/scripts/uv-run-remote-script-test.py b/scripts/uv-run-remote-script-test.py new file mode 100644 index 000000000..c05b14e0e --- /dev/null +++ b/scripts/uv-run-remote-script-test.py @@ -0,0 +1,13 @@ +# This file is used to test `uv run ` in ../crates/uv/tests/run.rs +# /// script +# requires-python = ">=3.11" +# dependencies = [ +# "rich==13.8.1", +# ] +# /// +import sys + +import rich + +who = sys.argv[1] +rich.print(f"Hello {who}, from uv!")