summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2014-01-07 18:16:06 +0100
committerMichael Vogt <mvo@debian.org>2014-01-07 18:16:06 +0100
commitd72fb3567d08dea6739a37ae641e80b79c524915 (patch)
treee6f48ce3d7fbde3d09cfd60d1a3a012e420983e7
parentbfa2ce346a1b84ed80db5be3c3a56b6954ebc1af (diff)
downloadpython-apt-d72fb3567d08dea6739a37ae641e80b79c524915.tar.gz
apply patch from Barry Warsaw to fix autopkgtest
-rw-r--r--debian/changelog5
-rw-r--r--debian/tests/control2
-rw-r--r--debian/tests/run-tests2
3 files changed, 7 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 319e721a..d48122b0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,11 @@ python-apt (0.9.2) UNRELEASED; urgency=low
- when using apt.Cache(rootdir=/some/dir) only read the APT
configuration from this rootdir instead of /etc (closes: #728274)
+ [ Barry Warsaw ]
+ * debian/tests/control: Add python-all and python3-all as Depends for the
+ autopkgtests so all the supported Python versions are pulled in.
+ (closes: #734500)
+
[ Michael Schaller]
* apt/cache.py:
- Fixed PEP8 issues
diff --git a/debian/tests/control b/debian/tests/control
index bdca7d61..9c92c35d 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -1,2 +1,2 @@
Tests: run-tests
-Depends: @, apt-utils, python-debian, fakeroot, intltool, pep8, pyflakes
+Depends: @, apt-utils, python-debian, python-all, python3-all, fakeroot, intltool, pep8, pyflakes
diff --git a/debian/tests/run-tests b/debian/tests/run-tests
index bb980c6b..7d7a4bf3 100644
--- a/debian/tests/run-tests
+++ b/debian/tests/run-tests
@@ -3,6 +3,6 @@
set -e
# from debian/rules
-for python in $(utils/pyversions -r); do
+for python in $(utils/pyversions -r); do
$python tests/test_all.py -q
done