File: python2

package info (click to toggle)
pynfft 1.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,444 kB
  • ctags: 2,436
  • sloc: python: 348; makefile: 134; sh: 20
file content (14 lines) | stat: -rwxr-xr-x 207 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -efu

pys="$(pyversions -r 2>/dev/null)"

cp -a pynfft/tests "$ADTTMP"
cd "$ADTTMP"

for py in $pys; do
	echo "=== $py ==="
	$py -m nose 2>&1
	echo "=== $py-dbg ==="
	$py-dbg -m nose 2>&1
done