Files
zed-playground/workspaces/py_workspace/tests/conftest.py
2026-03-06 17:17:59 +08:00

7 lines
289 B
Python

import sys
import os
# The pytest console script does not always add the current working directory to sys.path.
# This ensures that the 'aruco' module and other local packages are importable during tests.
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))