summaryrefslogtreecommitdiffstats
path: root/tests/deckard/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/deckard/run.sh')
-rwxr-xr-xtests/deckard/run.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/deckard/run.sh b/tests/deckard/run.sh
new file mode 100755
index 0000000..2d1a33c
--- /dev/null
+++ b/tests/deckard/run.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+set -o errexit -o nounset
+
+MAKEDIR="$(dirname "$0")"
+# build env.sh only if needed
+# it is handy if someone is executing run.sh in parallel
+test ! -f "${MAKEDIR}/env.sh" && make depend -C "${MAKEDIR}"
+source "${MAKEDIR}/env.sh"
+
+# compatibility with old TESTS= env variable
+# add --scenarios= only if the variable TESTS is non-empty
+python3 -m pytest -c "${MAKEDIR}/deckard_pytest.ini" --tb=short -q ${VERBOSE:+"--log-level=DEBUG"} "${MAKEDIR}" ${DECKARDFLAGS:-} ${TESTS:+"--scenarios=${TESTS}"} "$@"