summaryrefslogtreecommitdiff
path: root/debian/tests/python3-dbg
blob: ae791ae27feb7e5dcf5b331112d3ddf3e75caf57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -efu

export LC_ALL=C.UTF-8

pys="$(py3versions -rv 2> /dev/null)"

cp -a silx/test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

for py in $pys; do
	echo "=== python$py ==="
	python$py-dbg -m unittest discover test/ 2>&1
done