|
19.1.97
by Markus Korn
added testing.sh to do batched testing |
1 |
#!/bin/bash
|
2 |
for test in testing/[^_]*.py |
|
3 |
do
|
|
4 |
echo "===== $test =====" |
|
5 |
echo "" |
|
|
19.1.98
by Markus Korn
testing.sh: create modulename out of filename |
6 |
t=${test//\//.} |
7 |
python -m ${t%.*y} |
|
|
19.1.97
by Markus Korn
added testing.sh to do batched testing |
8 |
echo "" |
9 |
echo "" |
|
10 |
done
|