platypush/run_tests.sh
2017-12-22 02:18:12 +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: