merge with latest changes

This commit is contained in:
robin@ynput.io 2024-09-25 16:23:31 -04:00
commit 8136ca593b
2 changed files with 20 additions and 0 deletions

9
tests/conftest.py Normal file
View file

@ -0,0 +1,9 @@
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")