6 lines
176 B
Python
6 lines
176 B
Python
"""Root conftest — add src/ to sys.path so 'import atm' works without install."""
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
sys.path.insert(0, str(Path(__file__).parent / "src"))
|