File: python2

package info (click to toggle)
python-fisx 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 21,888 kB
  • sloc: cpp: 9,333; python: 1,339; sh: 144; makefile: 41
file content (11 lines) | stat: -rw-r--r-- 160 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -efu

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

cd "$ADTTMP"

for py in $PYS; do
    echo "=== $py ==="
    $py -m fisx.tests.testAll 2>&1
done