mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
6 lines
206 B
Bash
Executable File
6 lines
206 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo "Run test suites! "
|
|
#python -m unittest discover tests
|
|
#python -Wignore -m unittest discover tests #ignore warning
|
|
coverage run -m unittest discover tests # generate coverage file
|