mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
7 lines
194 B
Bash
Executable File
7 lines
194 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo "Run test suites! "
|
|
# tests: include unittest based tests
|
|
# -Werror: warning as error
|
|
# --durations=0: show ranking of test durations
|
|
pytest tests -Werror --durations=0
|