mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
- Added client path to sys.path in conftest.py - Implemented function to run the repository from code in manage.ps1
9 lines
209 B
Python
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")
|