Files
atm/conftest.py
Claude Agent 9207197a56 initial: scaffold atm trading monitor (Faza 1)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-15 22:03:36 +00:00

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"))