[Python-modules-commits] [pytest] 06/06: * d/tests: - control: Add a Depends to pick up all supported Python 3 versions. - smoketest-{2, 3}: Run the smoke tests against all installed versions of Python, instead of the supported versions.

Barry Warsaw barry at moszumanska.debian.org
Mon Feb 8 22:21:47 UTC 2016


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

barry pushed a commit to branch master
in repository pytest.

commit 52e5caaba5bce93530b9760b0e50864faebbd108
Author: Barry Warsaw <barry at python.org>
Date:   Mon Feb 8 17:21:33 2016 -0500

    * d/tests:
      - control: Add a Depends to pick up all supported Python 3 versions.
      - smoketest-{2,3}: Run the smoke tests against all installed versions
        of Python, instead of the supported versions.
---
 debian/changelog         | 6 +++++-
 debian/tests/control     | 1 +
 debian/tests/smoketest-2 | 2 +-
 debian/tests/smoketest-3 | 2 +-
 4 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 9910766..b209ff1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,8 +7,12 @@ pytest (2.8.7-1) UNRELEASED; urgency=medium
 
   [ Barry Warsaw ]
   * New upstream release.
+  * d/tests:
+    - control: Add a Depends to pick up all supported Python 3 versions.
+    - smoketest-{2,3}: Run the smoke tests against all installed versions
+      of Python, instead of the supported versions.
 
- -- Barry Warsaw <barry at debian.org>  Wed, 03 Feb 2016 14:46:06 +0100
+ -- Barry Warsaw <barry at debian.org>  Mon, 08 Feb 2016 17:21:11 -0500
 
 pytest (2.8.5-2) unstable; urgency=medium
 
diff --git a/debian/tests/control b/debian/tests/control
index e4a4086..dcf344d 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -1,3 +1,4 @@
 Tests: smoketest-2
 
 Tests: smoketest-3
+Depends: @, python3-all
diff --git a/debian/tests/smoketest-2 b/debian/tests/smoketest-2
index b9c925a..6625177 100755
--- a/debian/tests/smoketest-2
+++ b/debian/tests/smoketest-2
@@ -11,6 +11,6 @@ EOF
 
 cd "$ADTTMP"
 
-for py in $(pyversions -s); do
+for py in $(pyversions -i); do
     TMPDIR="$ADTTMP" $py -m pytest smoketest.py
 done
diff --git a/debian/tests/smoketest-3 b/debian/tests/smoketest-3
index 65ceb32..49ff32b 100755
--- a/debian/tests/smoketest-3
+++ b/debian/tests/smoketest-3
@@ -11,6 +11,6 @@ EOF
 
 cd "$ADTTMP"
 
-for py in $(py3versions -s); do
+for py in $(py3versions -i); do
     TMPDIR="$ADTTMP" $py -m pytest smoketest.py
 done

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



More information about the Python-modules-commits mailing list