Skip to content

Commit

Permalink
Update test_bare.sh to run commands via uv
Browse files Browse the repository at this point in the history
  • Loading branch information
browniebroke committed Oct 12, 2024
1 parent b7729e8 commit 56f839e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_bare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
Expand Down

0 comments on commit 56f839e

Please sign in to comment.