Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,8 @@ jobs:
env:
DJANGO_SETTINGS_MODULE: efile.settings
working-directory: efile_app
run: uv run pytest -q
run: |
# Keep the migration graph deployable. pytest uses --nomigrations, so
# the test suite alone would not catch conflicting migration leaves.
uv run python manage.py makemigrations --check --dry-run
uv run pytest -q
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("efile", "0003_jurisdiction_specific_accounts"),
("efile", "0010_merge_amount_in_controversy_and_payment_migrations"),
]

operations = []