File: unittests

package info (click to toggle)
python-launchpadlib 1.10.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 544 kB
  • ctags: 637
  • sloc: python: 2,099; makefile: 27; sh: 9
file content (13 lines) | stat: -rwxr-xr-x 234 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -efu

# Launchpadlib tries to keep a cache in HOME
HOME="$ADTTMP/home"
mkdir "$HOME"

pythons="$(pyversions -rv)"
cd "$ADTTMP"
for py in $pythons; do
	echo "=== python$py ==="
	nosetests-$py launchpadlib.tests 2>&1
done