ayon-core/tests/conftest.py
Jakub Jezek 2980f10040
Add client path to sys.path and run repository from code
- Added client path to sys.path in conftest.py
- Implemented function to run the repository from code in manage.ps1
2024-09-25 16:06:24 +02:00

9 lines
209 B
Python

import sys
from pathlib import Path
client_path = Path(__file__).resolve().parent.parent / "client"
# add client path to sys.path
sys.path.append(str(client_path))
print(f"Added {client_path} to sys.path")