mirror of
https://github.com/CyberMind-FR/secubox-deb.git
synced 2026-07-30 00:19:30 +00:00
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>
7 lines
205 B
Python
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))
|