Replace test keyfile

This commit is contained in:
nolash
2021-10-10 18:27:16 +02:00
parent 7753247afb
commit 7f113d1cdc
4 changed files with 690 additions and 0 deletions

12
run_tests.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
set -x
default_pythonpath=$PYTHONPATH:.
export PYTHONPATH=${default_pythonpath:-.}
>&2 echo using pythonpath $PYTHONPATH
for f in `ls tests/*.py`; do
python $f
done
set +x
set +e