Files
PythonRobotics/runtests.sh
Atsushi Sakai 2731cdba00 Use pytest_xdist for unit-test speed up in CI (#459)
* Remove unnecessary plot

* Remove unnecessary plot

* update appveyor.yml
2021-01-16 14:28:24 +09:00

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