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

8 lines
166 B
Python

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