summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Arias <eamanu@yaerobi.com>2020-03-28 17:31:54 -0400
committergit-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com>2020-03-29 16:56:57 +0000
commit75a8cbb7d6a6dbdd4eee339cda98b392468e8e1c (patch)
treefcf333be949884d09989bdb1e50e7f7135d80fc8
parentb4a87e66163892efdc2cdaa5c750778628322a62 (diff)
Imported using git-ubuntu import.
Notes
Notes: * Non-maintainer upload. * d/tests/smoke-python3: fix autopkgtest regression. Use pyversions -s to test all suported versions (Closes: #954473).
-rw-r--r--debian/changelog8
-rw-r--r--debian/tests/control3
-rwxr-xr-xdebian/tests/smoke-python32
3 files changed, 11 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 18151a4..82ef39d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+python-daemon (2.2.4-1.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * d/tests/smoke-python3: fix autopkgtest regression.
+ Use pyversions -s to test all suported versions (Closes: #954473).
+
+ -- Emmanuel Arias <eamanu@yaerobi.com> Sat, 28 Mar 2020 17:31:54 -0400
+
python-daemon (2.2.4-1) unstable; urgency=medium
* The “Doris Rivett” release.
diff --git a/debian/tests/control b/debian/tests/control
index 06ee01d..25e1a00 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -5,7 +5,8 @@
Tests: smoke-python3
Depends:
python3-pkg-resources,
- python3-daemon
+ python3-daemon,
+ python3-all
# Local variables:
diff --git a/debian/tests/smoke-python3 b/debian/tests/smoke-python3
index c6e5b8d..2af1f63 100755
--- a/debian/tests/smoke-python3
+++ b/debian/tests/smoke-python3
@@ -24,7 +24,7 @@ for mod in ${MODULE_NAMES[@]} ; do
test_opts="$test_opts --module=$mod"
done
-for py in $(py3versions -i) ; do
+for py in $(py3versions -s) ; do
printf "Python command: %s\n" $py
$py debian/tests/smoke_test.py $test_opts
printf "\n"