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" ]