From 37a97041a9ef7f3feb7efce74f6cc2b84cfc299e Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Tue, 18 Feb 2025 20:49:47 -0800 Subject: [PATCH] uv run is not needed (#1745) * uv run is not needed * Update test.sh --- test.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test.sh b/test.sh index 3b2b847e..59e06d8f 100755 --- a/test.sh +++ b/test.sh @@ -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'