File: python2

package info (click to toggle)
python-biom-format 2.1.7%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 51,820 kB
  • sloc: python: 12,757; makefile: 155; sh: 79
file content (17 lines) | stat: -rw-r--r-- 273 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -efu

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

# Change this to close bug #919586
cp -a ./examples ./tests "$ADTTMP"
#cp -a ./examples ./biom/tests "$ADTTMP"

cd "$ADTTMP"

export LC_ALL=C.UTF-8

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