12 lines
339 B
Python
12 lines
339 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Conftest for property-based tests.
|
|
Ensures the project root is on sys.path for direct module imports.
|
|
"""
|
|
import sys
|
|
import os
|
|
|
|
# Add project root to sys.path so we can import modules directly
|
|
# (e.g., `from config.app_config import AppConfig`)
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))
|