uv run is not needed (#1745)

* uv run is not needed

* Update test.sh
This commit is contained in:
Shane Smiskol
2025-02-18 20:49:47 -08:00
committed by GitHub
parent 7becc2db19
commit 37a97041a9

View File

@@ -17,15 +17,15 @@ uv sync --all-extras
source .venv/bin/activate
# *** build ***
uv run scons -j8
scons -j8
# *** lint ***
# TODO: pre-commit is slow; replace it with openpilot's "op lint"
#uv run pre-commit run --all-files
uv run ruff check .
#pre-commit run --all-files
ruff check .
# *** test ***
uv run pytest -n8
pytest -n8
# *** all done ***
GREEN='\033[0;32m'