mirror of
https://github.com/YunoHost-Apps/django-fritzconnection_ynh.git
synced 2024-09-03 18:26:24 +02:00
11 lines
218 B
Python
11 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()
|