From ac750b4997978d1c29703ea303d66e995311b429 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Mon, 20 Jan 2025 17:03:35 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9E=95(backend)=20add=20django-test-migratio?= =?UTF-8?q?ns?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add django-test-migrations to the project. It is a tool that helps to test Django migrations. --- src/backend/pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index d73bdc2e1..f9b052e29 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -34,6 +34,7 @@ dependencies = [ "django-filter==24.3", "django-parler==2.3", "redis==5.2.1", + "django-test-migrations==1.4.0", "django-redis==5.4.0", "django-storages[s3]==1.14.4", "django-timezone-field>=5.1", @@ -145,3 +146,7 @@ python_files = [ "test_*.py", "tests.py", ] + +pytest_plugins = [ + "django_test_migrations.contrib.pytest_plugin", +]