mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 16:47:55 -05:00
9 lines
262 B
Bash
Executable File
9 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
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 -n auto tests -l -Werror --durations=0
|