Files
PythonRobotics/runtests.sh
Atsushi Sakai d2fe5ae8f0 Add code links to SLAM module documentation (#1212)
This commit updates SLAM module documentation files to include direct code links for better navigation. It also adjusts imports in `test_iterative_closest_point.py` to reflect updated module structure and adds a safety check for the directory in `runtests.sh`.
2025-05-04 09:50:49 +09:00

10 lines
285 B
Bash
Executable File

#!/usr/bin/env bash
cd "$(dirname "$0")" || exit 1
echo "Run test suites! "
# === pytest based test runner ===
# -Werror: warning as error
# --durations=0: show ranking of test durations
# -l (--showlocals); show local variables when test failed
pytest tests -l -Werror --durations=0