summaryrefslogtreecommitdiff
path: root/debian/tests/python2
blob: 31e3d64c1aabfcbb75916445564e76fa39e9a99c (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="$(pyversions -rv 2> /dev/null)"

cp -a tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

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