Skip to content

Commit

Permalink
debugging test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dmeliza committed Dec 7, 2024
1 parent cf7a0f6 commit 0082917
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test_db
# Django settings
DJANGO_SETTINGS_MODULE: inventory.tests.settings
run: uv run -m django migrate
run: |
python -c "import sys; print('\n'.join(sys.path))"
python -c "import inventory; print(inventory.__file__)"
python -c "import inventory.tests; print(inventory.tests.__file__)"
python -c "import inventory.tests.urls; print(inventory.tests.urls.__file__)"
python -c "import django; print(django.__file__)"
uv run -m django migrate
- name: Run Tests
run: uv run pytest

0 comments on commit 0082917

Please sign in to comment.