Improve test runner

This commit is contained in:
nolash 2021-10-24 16:11:54 +02:00
parent 06530e3ffa
commit 7d27faa960
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746

View File

@ -2,12 +2,13 @@
set -e set -e
set -x set -x
#for f in `ls tests/*.py`; do default_pythonpath=$PYTHONPATH:.
#python $f export PYTHONPATH=${default_pythonpath:-.}
# if [ $? -gt 0 ]; then for f in `ls tests/*.py`; do
# exit 1 python $f
# fi if [ $? -gt 0 ]; then
#done exit 1
pytest -s -v -x ./tests fi
done
set +x set +x
set +e set +e