8 lines
102 B
Bash
Executable file
8 lines
102 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
for test in *_test.py; do
|
|
echo "Testing $test ..."
|
|
./${test} 2>&1
|
|
echo
|
|
done
|