File: python3

package info (click to toggle)
python-biom-format 2.1.5%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 51,844 kB
  • ctags: 1,341
  • sloc: python: 11,620; makefile: 128; sh: 65
file content (12 lines) | stat: -rw-r--r-- 174 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -efu

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

cp -a ./examples ./tests "$ADTTMP"
cd "$ADTTMP"

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