From 56f839e2b475b44b856a32ccf1437ae20e0a5404 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Sat, 12 Oct 2024 17:05:29 +0100 Subject: [PATCH] Update test_bare.sh to run commands via uv --- tests/test_bare.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_bare.sh b/tests/test_bare.sh index f38c9357..fcdf33af 100755 --- a/tests/test_bare.sh +++ b/tests/test_bare.sh @@ -18,13 +18,13 @@ cd my_awesome_project sudo utility/install_os_dependencies.sh install # Install Python deps -pip install -r requirements/local.txt +uv pip install -r requirements/local.txt # run the project's tests -pytest +uv run pytest # Make sure the check doesn't raise any warnings -python manage.py check --fail-level WARNING +uv run python manage.py check --fail-level WARNING # Run npm build script if package.json is present if [ -f "package.json" ]