diff options
Diffstat (limited to 'debian/tests/python2-dbg')
-rwxr-xr-x | debian/tests/python2-dbg | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/debian/tests/python2-dbg b/debian/tests/python2-dbg new file mode 100755 index 0000000..f43398e --- /dev/null +++ b/debian/tests/python2-dbg @@ -0,0 +1,14 @@ +#!/bin/sh +set -efu + +export LC_ALL=C.UTF-8 + +pys="$(pyversions -rv 2> /dev/null)" + +cp -a tests "$AUTOPKGTEST_TMP" +cd "$AUTOPKGTEST_TMP" + +for py in $pys; do + echo "=== python$py ===" + python$py-dbg -m unittest discover silx/test/ 2>&1 +done |