Spaces:
Sleeping
Sleeping
File size: 279 Bytes
0bbb422 | 1 2 3 4 5 6 7 8 9 | """Pytest configuration for code-review-env tests."""
import sys
import os
# Add the project root to sys.path so server.* and models can be imported
# without triggering the root __init__.py relative import chain.
sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
|