File: python2

package info (click to toggle)
pykdtree 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 568 kB
  • ctags: 876
  • sloc: ansic: 803; python: 307; makefile: 10; sh: 8
file content (12 lines) | stat: -rwxr-xr-x 198 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -efu

PYS=${PYS:-"$(pyversions -r 2>/dev/null)"}
TESTPKG=${TESTPKG:-pykdtree}

cd "$ADTTMP"

for py in $PYS; do
    echo "=== $py ==="
    $py /usr/bin/nosetests -v pykdtree 2>&1
done