mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 22:08:09 -05: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
|