mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
8 lines
212 B
Python
8 lines
212 B
Python
"""conftest.py: pytest configuration file."""
|
|
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))
|