secubox-deb/remote-ui/round/conftest.py
CyberMind-FR 35e59058c5 feat(eye-agent): Add config module with TOML loader
Implements the foundation config module for Eye Remote v2.0.0 agent:
- DeviceConfig, SecuBoxConfig, and Config dataclasses
- load_config() to parse TOML configuration files
- get_active_secubox() and set_active_secubox() for multi-SecuBox support
- Example config file with OTG and WiFi connection templates
- Comprehensive test suite (7 tests) following TDD

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-04-21 10:08:25 +02:00

7 lines
205 B
Python

"""Pytest configuration for Eye Remote tests."""
import sys
from pathlib import Path
# Add the round directory to the path so 'agent' module can be imported
sys.path.insert(0, str(Path(__file__).parent))