django-for-runners_ynh/manage_local_test.py
2024-08-04 21:06:06 +02:00

11 lines
218 B
Python
Executable file

#!.venv/bin/python3
"""
Call the "manage.py" from the local test environment.
"""
from django_yunohost_integration.local_test import run_local_test_manage
if __name__ == '__main__':
run_local_test_manage()