unwind/scripts/tests

13 lines
192 B
Text
Raw Normal View History

2021-06-21 18:54:03 +02:00
#!/bin/sh -eu
cd "$RUN_DIR"
dbfile="$RUN_DIR/tests.sqlite.local"
trap 'rm "$dbfile"' EXIT TERM INT QUIT
2021-06-21 18:54:03 +02:00
[ -z "${DEBUG:-}" ] || set -x
UNWIND_STORAGE="$dbfile" \
python -m pytest "$@"