diff options
Diffstat (limited to '')
-rw-r--r-- | debian/tests/smoke | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/tests/smoke b/debian/tests/smoke new file mode 100644 index 0000000..c635fe9 --- /dev/null +++ b/debian/tests/smoke @@ -0,0 +1,16 @@ +#! /bin/bash + +cp -r _test ${AUTOPKGTEST_TMP} + +for py3vers in $(py3versions -s); do + echo + echo "***************************" + echo "*** Testing with ${py3vers}" + echo "***************************" + echo + cd ${AUTOPKGTEST_TMP} && \ + echo -e "Content of current working folder:\n" && \ + ls -la && \ + echo -e "Running tests...\n" && \ + PYTHONPATH=. ${py3vers} -m pytest +done |