"""tests/dev6 공통 fixture — IDS Phase 1 import 경로 등록."""

from __future__ import annotations

import sys
from pathlib import Path

_WORKSPACE = Path("/home/jay/workspace")
for _path in (
    _WORKSPACE / "skills" / "satori-cardnews",
    _WORKSPACE / "skills" / "hybrid-image",
):
    _str = str(_path)
    if _str not in sys.path:
        sys.path.insert(0, _str)
