From 122b1900a3f2e640bde361fedb1a99cae29c9c6a Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Sat, 12 Oct 2024 17:11:28 +0100 Subject: [PATCH] Revert "Update test_bare.sh to run commands via uv" This reverts commit 56f839e2b475b44b856a32ccf1437ae20e0a5404. --- 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 fcdf33afc..f38c9357e 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 -uv pip install -r requirements/local.txt +pip install -r requirements/local.txt # run the project's tests -uv run pytest +pytest # Make sure the check doesn't raise any warnings -uv run python manage.py check --fail-level WARNING +python manage.py check --fail-level WARNING # Run npm build script if package.json is present if [ -f "package.json" ]