This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/src/articles/tests/test_migrations.py
2021-12-31 12:08:35 +01:00

8 lines
174 B
Python

import pytest
from django.core.management import call_command
@pytest.mark.django_db()
def test_missing_migrations() -> None:
call_command("makemigrations", "--check")