Revert "Update test_bare.sh to run commands via uv"

This reverts commit 56f839e2b4.
This commit is contained in:
Bruno Alla 2024-10-12 17:11:28 +01:00
parent 6b8e4e7902
commit 122b1900a3
No known key found for this signature in database

View File

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