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

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


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


for py in $pys; do
	echo "=== $py ==="
	$py -m pytest 2>&1
done