Sith/conftest.py

15 lines
367 B
Python
Raw Normal View History

import pytest
from django.core.management import call_command
from django.utils.translation import activate
@pytest.fixture(scope="session")
def django_db_setup(django_db_setup, django_db_blocker):
with django_db_blocker.unblock():
2024-07-04 08:19:24 +00:00
call_command("populate")
@pytest.fixture(scope="session", autouse=True)
def set_default_language():
activate("fr")