loud-laptop-17949
11/23/2021, 11:06 PMhappy-kitchen-89482
11/24/2021, 12:20 AMmanage.py
?loud-laptop-17949
11/24/2021, 12:23 AMclean-city-64472
11/24/2021, 12:23 AMloud-laptop-17949
11/24/2021, 12:23 AMclean-city-64472
11/24/2021, 12:25 AMloud-laptop-17949
11/24/2021, 12:27 AMhappy-kitchen-89482
11/24/2021, 12:36 AM./pants run path/to/manage.py makemigrations
it writes them in the sandbox, and not the source tree. I imagine something similar might happen for makemessages.clean-city-64472
11/24/2021, 1:36 AMimport pytest
from django.core.management import call_command
@pytest.fixture(scope="session")
def translations():
call_command("makemessages", "--all")
call_command("compilemessages")
@loud-laptop-17949