test: add pytest suite for pose utilities

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-02-04 11:55:38 +00:00
parent 69a3d1e8bf
commit d1e58245a6
5 changed files with 214 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
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__), "..")))