File: python3

package info (click to toggle)
pykdtree 1.3.6%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 180 kB
  • sloc: python: 380; sh: 27; makefile: 25
file content (12 lines) | stat: -rwxr-xr-x 208 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:-pykdtree}

cd "$AUTOPKGTEST_TMP"

for py in $PYS; do
    echo "=== $py ==="
    $py -m pytest -v --pyargs pykdtree 2>&1
done