[Python-modules-commits] [numpydoc] 14/16: Run DEP-8 tests for all Python versions
Ghislain Vaillant
ghisvail-guest at moszumanska.debian.org
Wed Jul 12 18:19:14 UTC 2017
This is an automated email from the git hooks/post-receive script.
ghisvail-guest pushed a commit to branch master
in repository numpydoc.
commit 5f341b6ce9995df075f9331d1a6196231d614fb1
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date: Wed Jul 12 16:56:29 2017 +0100
Run DEP-8 tests for all Python versions
---
debian/tests/control | 26 ++++++++++++++++++++------
1 file changed, 20 insertions(+), 6 deletions(-)
diff --git a/debian/tests/control b/debian/tests/control
index 93619cb..f1d1c86 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -1,9 +1,23 @@
-Test-Command: cd $AUTOPKGTEST_TMP
- ; python -m nose numpydoc
-Depends: python-matplotlib, python-nose, python-numpydoc
+Test-Command: set -e
+ ; for py in $(pyversions -r 2>/dev/null)
+ ; do cd "$AUTOPKGTEST_TMP"
+ ; echo "Testing with $py:"
+ ; $py -m nose numpydoc
+ ; done
+Depends: python-all,
+ python-matplotlib,
+ python-nose,
+ python-numpydoc
Restrictions: allow-stderr
-Test-Command: cd $AUTOPKGTEST_TMP
- ; python3 -m nose numpydoc
-Depends: python3-matplotlib, python3-nose, python3-numpydoc
+Test-Command: set -e
+ ; for py in $(py3versions -r 2>/dev/null)
+ ; do cd "$AUTOPKGTEST_TMP"
+ ; echo "Testing with $py:"
+ ; $py -m nose numpydoc
+ ; done
+Depends: python3-all,
+ python3-matplotlib,
+ python3-nose,
+ python3-numpydoc
Restrictions: allow-stderr
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/numpydoc.git
More information about the Python-modules-commits
mailing list