Do not test under Python 2.6.

This commit is contained in:
Thomas Goirand
2014-09-30 06:01:57 +00:00
parent 7a0c83e74b
commit 161c670a74
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@@ -2,6 +2,7 @@ python-django-pyscss (1.0.3-1) unstable; urgency=medium
* New upstream release.
* Added fix-storage.prefix-not-found.patch for Django 1.7 compat.
* Do not test under Python 2.6.
-- Thomas Goirand <zigo@debian.org> Tue, 30 Sep 2014 01:37:41 +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 $(PYTHONS) ; do \
set -e && for pyvers in 2.7 ; do \
echo "===> Testing with python$$pyvers" ; \
PYTHON=python$$pyvers python$$pyvers setup.py test ; \
done