py-fuzzer: recommend using uvx rather than uv run to run the fuzzer (#14645)

This commit is contained in:
Alex Waygood
2024-11-27 22:19:52 +00:00
committed by GitHub
parent 6d61c8aa16
commit f1b2e85339
5 changed files with 10 additions and 12 deletions

View File

@@ -330,10 +330,9 @@ jobs:
chmod +x ${{ steps.download-cached-binary.outputs.download-path }}/ruff
(
uv run \
--no-project \
uvx \
--python=${{ env.PYTHON_VERSION }} \
--with=./python/py-fuzzer \
--from=./python/py-fuzzer \
fuzz \
--test-executable=${{ steps.download-cached-binary.outputs.download-path }}/ruff \
--bin=ruff \

View File

@@ -45,10 +45,9 @@ jobs:
- name: Fuzz
run: |
(
uv run \
--no-project \
uvx \
--python=3.12 \
--with=./python/py-fuzzer \
--from=./python/py-fuzzer \
fuzz \
--test-executable=target/debug/ruff \
--bin=ruff \