platypush/run_tests.sh

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: