Do not run unit tests with Python 3.4: it's broken.

This commit is contained in:
Thomas Goirand
2015-08-27 08:47:06 +00:00
parent 440ae21fe4
commit 93054b7f11
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@@ -3,6 +3,7 @@ python-django-pyscss (2.0.2-3) unstable; urgency=medium
* Uploading to Unstable.
* (build-)depends on python-pyscss 1.3.4 not 1.2.
* Added missing (build-)depends on python{3,}-mock.
* Do not run unit tests with Python 3.4: it's broken.
-- Thomas Goirand <zigo@debian.org> Thu, 27 Aug 2015 08:41:16 +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 $(PYTHON3S) ; do \
set -e ; for pyvers in 2.7 ; do \
echo "===> Testing with python$$pyvers" ; \
PYTHON=python$$pyvers python$$pyvers setup.py test ; \
done