fix db path

This commit is contained in:
2026-07-15 15:19:15 -04:00
parent ba2f8f4a0d
commit 99b919b5da
+1 -1
View File
@@ -10,7 +10,7 @@ from test_config import serialize_station_testpoint_map
APP_ROOT = Path(__file__).resolve().parent
DB_PATH = APP_ROOT / "scheduler.db"
DB_PATH = Path(os.getenv("DB_PATH", str(APP_ROOT / "scheduler.db")))
# Hardware device names (from environment or defaults)
DUT = os.getenv("DUT", "CGW453").strip()