9 lines
258 B
Bash
Executable File
9 lines
258 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
scriptDir="$(cd "$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" && pwd)"
|
|
cd $scriptDir
|
|
for i in tests/test_*.py; do
|
|
echo "== $i ================================================================="
|
|
(set -x && python3 $i)
|
|
done
|