summaryrefslogtreecommitdiffstats
path: root/debian/tests/unittests
blob: d2fecdc752d71c8eea24c4fac22a443b3363e407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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 tests
done