django-for-runners_ynh/manage_local_test.py

12 lines
218 B
Python
Raw Normal View History

2024-08-04 21:06:06 +02:00
#!.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()