11 lines
124 B
Bash
Executable file
11 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:
|
|
|