File: python3

package info (click to toggle)
python-geotiepoints 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 9,828 kB
  • sloc: python: 2,720; makefile: 121; sh: 23
file content (12 lines) | stat: -rw-r--r-- 206 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -efu

PYS=${PYS:-"$(py3versions -s 2>/dev/null)"}
TESTPKG=${TESTPKG:-geotiepoints}

cd "$AUTOPKGTEST_TMP"

for py in $PYS; do
    echo "=== $py ==="
    $py -m pytest --pyargs ${TESTPKG}
done