File: upstream-tests

package info (click to toggle)
munkres 1.1.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 164 kB
  • sloc: python: 636; sh: 8; makefile: 4
file content (12 lines) | stat: -rwxr-xr-x 168 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -efu

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

cp -a test $AUTOPKGTEST_TMP
cd "$AUTOPKGTEST_TMP"

for py in $pys; do
	echo "=== $py ==="
	$py -m pytest
done