blob: 15451b1f6f1b3599e59b29d53d64f2cb3c38c60e (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
for test in *Test.py; do
echo ======================================================================
echo Executing tests in: $test
PYTHONPATH=../src python $test -v
done
|