File: python3

package info (click to toggle)
pynfft 1.3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,456 kB
  • sloc: python: 347; makefile: 133; sh: 10
file content (14 lines) | stat: -rwxr-xr-x 208 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -efu

pys="$(py3versions -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