mirror of
https://github.com/YunoHost-Apps/django-for-runners_ynh.git
synced 2024-09-03 18:26:16 +02:00
12 lines
218 B
Python
12 lines
218 B
Python
|
#!.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()
|