chaind-eth/run_tests.sh
2021-07-17 07:17:19 +02:00

11 lines
120 B
Bash

#!/bin/bash
set -e
set -x
export PYTHONPATH=${PYTHONPATH:.}
for f in `ls tests/*.py`; do
python $f
done
set +x
set +e