summaryrefslogtreecommitdiffstats
path: root/debian/tests/pytest
blob: 54ef29880e51b6aa6fbc3b75460fe3045dc6f03c (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 
done