add autopkgtests

This commit is contained in:
Julian Taylor
2013-06-01 18:06:51 +02:00
parent b6c15cb5b0
commit ce3a583313
4 changed files with 20 additions and 0 deletions
+6
View File
@@ -1,3 +1,9 @@
skimage (0.8.2-2) UNRELEASED; urgency=low
* add autopkgtests
-- Julian Taylor <jtaylor.debian@googlemail.com> Mon, 10 Jun 2013 21:15:36 +0200
skimage (0.8.2-1) unstable; urgency=low
[ Stefan van der Walt ]
+1
View File
@@ -19,6 +19,7 @@ XS-Python-Version: >= 2.6
Homepage: http://scikits-image.org
Vcs-Browser: https://github.com/scikits-image/scikits-image
Vcs-Git: git://github.com/scikits-image/scikits-image.git
XS-Testsuite: autopkgtest
Package: python-skimage
Architecture: all
+2
View File
@@ -0,0 +1,2 @@
Tests: python2
Depends: python-all, python-nose, python-skimage
Vendored Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
set -efu
pys="$(pyversions -r 2>/dev/null)"
cd "$ADTTMP"
for py in $pys; do
echo "=== $py ==="
$py /usr/bin/nosetests -v skimage 2>&1
done