diff --git a/backend/tests/conftest.py b/backend/tests/conftest.py new file mode 100644 index 0000000..7e52036 --- /dev/null +++ b/backend/tests/conftest.py @@ -0,0 +1,6 @@ +import pytest +import sys +import os + +# Add backend to path so imports work without installing the package +sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))