[Python-modules-commits] [txzmq] 03/09: Directly call python(3) interpreters in autopkgtests (Closes: #860035).

Michael Fladischer fladi at moszumanska.debian.org
Wed Dec 20 18:30:10 UTC 2017


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch debian/master
in repository txzmq.

commit ffe5eaf0af5181698e8f14cf87c0ae449ec885f2
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Wed Dec 20 11:13:41 2017 +0100

    Directly call python(3) interpreters in autopkgtests (Closes: #860035).
---
 debian/changelog       | 2 ++
 debian/tests/unittests | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 303a97f..cfdfb64 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 txzmq (0.7.4-2) UNRELEASED; urgency=medium
 
   * Refresh patches after git-dpm to gbp pq conversion
+  * Directly call python(3) interpreters in autopkgtests (Closes:
+    #860035).
 
  -- Michael Fladischer <fladi at debian.org>  Wed, 20 Dec 2017 11:09:19 +0100
 
diff --git a/debian/tests/unittests b/debian/tests/unittests
index 90a288e..b1a92ad 100755
--- a/debian/tests/unittests
+++ b/debian/tests/unittests
@@ -2,6 +2,6 @@
 set -e -u
 export PYTHONWARNINGS=d
 cd "$ADTTMP"
-for version in $(pyversions -iv); do
-    py.test-$version --pyargs txzmq;
+for python in $(pyversions -i) $(py3versions -i); do
+    $python -m pytest --pyargs txzmq;
 done

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/txzmq.git



More information about the Python-modules-commits mailing list