platypush/run_tests.sh

12 lines
124 B
Bash
Raw Normal View History

2017-12-22 02:11:56 +01:00
#!/bin/bash
PYTHON=python
for testcase in tests/test_*.py
do
$PYTHON -m unittest $testcase
done
# vim:sw=4:ts=4:et: