7 lines
171 B
Python
7 lines
171 B
Python
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__), ".."))
|