diff --git a/debian/changelog b/debian/changelog index 7f231d8..7e97818 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,7 @@ python-django-pyscss (2.0.2-5) UNRELEASED; urgency=medium * Add define-django-template-backend.patch to avoid FTBFS with Django 1.10 (Closes: #828671). * Fixed debian/copyright ordering. + * Also test with Py3. -- Thomas Goirand Tue, 19 Jul 2016 08:40:48 +0000 diff --git a/debian/rules b/debian/rules index 3fe344b..1c9d524 100755 --- a/debian/rules +++ b/debian/rules @@ -26,7 +26,7 @@ override_dh_install: override_dh_auto_test: ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) - set -e ; for pyvers in 2.7 ; do \ + set -e ; for pyvers in 2.7 $(PYTHON3S); do \ echo "===> Testing with python$$pyvers" ; \ http_proxy=127.0.0.1:9 https_proxy=127.0.0.1:9 PYTHON=python$$pyvers python$$pyvers setup.py test ; \ done