Also test with Py3.

This commit is contained in:
Thomas Goirand
2016-07-19 08:43:11 +00:00
parent fadfe12be6
commit 72eac68dd5
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@@ -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 <zigo@debian.org> Tue, 19 Jul 2016 08:40:48 +0000

2
debian/rules vendored
View File

@@ -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