[Python-modules-commits] r13057 - in packages/python-whoosh/trunk/debian (changelog rules)

jwilk at users.alioth.debian.org jwilk at users.alioth.debian.org
Fri May 21 22:42:46 UTC 2010


    Date: Friday, May 21, 2010 @ 22:42:24
  Author: jwilk
Revision: 13057

Don't ignore errors while running tests.

Modified:
  packages/python-whoosh/trunk/debian/changelog
  packages/python-whoosh/trunk/debian/rules

Modified: packages/python-whoosh/trunk/debian/changelog
===================================================================
--- packages/python-whoosh/trunk/debian/changelog	2010-05-21 22:37:04 UTC (rev 13056)
+++ packages/python-whoosh/trunk/debian/changelog	2010-05-21 22:42:24 UTC (rev 13057)
@@ -1,8 +1,9 @@
 python-whoosh (0.3.18-2) UNRELEASED; urgency=low
 
   * Use ‘chmod a-x’ rather than ‘chmod -x’ in debian/rules.
+  * Don't ignore errors while running tests.
 
- -- Jakub Wilk <jwilk at debian.org>  Sat, 22 May 2010 00:36:14 +0200
+ -- Jakub Wilk <jwilk at debian.org>  Sat, 22 May 2010 00:40:27 +0200
 
 python-whoosh (0.3.18-1) unstable; urgency=low
 

Modified: packages/python-whoosh/trunk/debian/rules
===================================================================
--- packages/python-whoosh/trunk/debian/rules	2010-05-21 22:37:04 UTC (rev 13056)
+++ packages/python-whoosh/trunk/debian/rules	2010-05-21 22:42:24 UTC (rev 13057)
@@ -12,7 +12,7 @@
 	mkdir docs/build && python setup.py build_sphinx
 
 override_dh_auto_test:
-	for py in $(PYVERS); do  \
+	set -e; for py in $(PYVERS); do  \
 	  python$$py setup.py test ;\
 	done
 




More information about the Python-modules-commits mailing list