File: python2

package info (click to toggle)
python-mpop 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 20,516 kB
  • ctags: 1,877
  • sloc: python: 15,374; xml: 820; makefile: 90; sh: 8
file content (12 lines) | stat: -rwxr-xr-x 199 bytes parent folder | download
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:-python-mpop}

cd "$ADTTMP"

for py in $PYS; do
    echo "=== $py ==="
    $py -m unittest discover -v mpop 2>&1
done