mirror of
https://github.com/YunoHost-Apps/django_example_ynh.git
synced 2024-09-03 18:26:21 +02:00
40 lines
946 B
Python
40 lines
946 B
Python
|
"""
|
||
|
Special pytest init:
|
||
|
|
||
|
- Build a "local_test" YunoHost installation
|
||
|
- init Django with this local test installation
|
||
|
|
||
|
So the pytests will run against this local test installation
|
||
|
"""
|
||
|
import os
|
||
|
import sys
|
||
|
from pathlib import Path
|
||
|
|
||
|
import django
|
||
|
|
||
|
from django_yunohost_integration.local_test import create_local_test
|
||
|
|
||
|
|
||
|
BASE_PATH = Path(__file__).parent.parent
|
||
|
|
||
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
|
||
|
|
||
|
|
||
|
def pytest_configure():
|
||
|
print('Compile YunoHost files...')
|
||
|
final_path = create_local_test(
|
||
|
django_settings_path=BASE_PATH / 'conf' / 'settings.py',
|
||
|
destination=BASE_PATH / 'local_test',
|
||
|
runserver=False,
|
||
|
extra_replacements={},
|
||
|
)
|
||
|
print('Local test files created here:')
|
||
|
print(f'"{final_path}"')
|
||
|
|
||
|
os.chdir(final_path)
|
||
|
final_home_str = str(final_path)
|
||
|
if final_home_str not in sys.path:
|
||
|
sys.path.insert(0, final_home_str)
|
||
|
|
||
|
django.setup()
|