File: python3

package info (click to toggle)
mintpy 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,644 kB
  • sloc: python: 36,262; javascript: 6,880; sh: 340; makefile: 21
file content (13 lines) | stat: -rw-r--r-- 238 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -efu

PYS=${PYS:-"$(py3versions --supported 2>/dev/null)"}
TESTPKG=${TESTPKG:-mintpy}
TESTDIR=${PWD}/tests

cd "$AUTOPKGTEST_TMP"

for py in $PYS; do
    echo "=== $py ==="
    $py ${TESTDIR}/asc_desc2horz_vert.py 2>&1
done