platypush/run_test.sh
Fabio Manganiello 3dfcf0ec97 Added tests
2017-12-22 02:11:56 +01:00

12 lines
124 B
Bash
Executable file

#!/bin/bash
PYTHON=python
for testcase in tests/test_*.py
do
$PYTHON -m unittest $testcase
done
# vim:sw=4:ts=4:et: