[Python-modules-commits] r28177 - in packages/urwid/trunk/debian (changelog rules)

vcheng at users.alioth.debian.org vcheng at users.alioth.debian.org
Thu Mar 13 20:22:41 UTC 2014


    Date: Thursday, March 13, 2014 @ 20:22:41
  Author: vcheng
Revision: 28177

Fix #651648 and #658585, thanks to Robie Basak

Modified:
  packages/urwid/trunk/debian/changelog
  packages/urwid/trunk/debian/rules

Modified: packages/urwid/trunk/debian/changelog
===================================================================
--- packages/urwid/trunk/debian/changelog	2014-03-13 20:18:21 UTC (rev 28176)
+++ packages/urwid/trunk/debian/changelog	2014-03-13 20:22:41 UTC (rev 28177)
@@ -1,9 +1,15 @@
-urwid (1.2.0-2) UNRELEASED; urgency=medium
+urwid (1.2.0-2) unstable; urgency=medium
 
+  [ Vincent Cheng ]
   * Update watch file.
 
- -- Vincent Cheng <vcheng at debian.org>  Tue, 11 Mar 2014 23:17:05 -0700
+  [ Robie Basak ]
+  * Do not run tests if DEB_BUILD_OPTIONS specifies "nocheck".
+    (Closes: #651648)
+  * Run tests against all built Python versions. (Closes: #658585)
 
+ -- Robie Basak <robie.basak at ubuntu.com>  Thu, 13 Mar 2014 14:44:43 +0000
+
 urwid (1.2.0-1) unstable; urgency=medium
 
   * Team upload.

Modified: packages/urwid/trunk/debian/rules
===================================================================
--- packages/urwid/trunk/debian/rules	2014-03-13 20:18:21 UTC (rev 28176)
+++ packages/urwid/trunk/debian/rules	2014-03-13 20:22:41 UTC (rev 28177)
@@ -9,7 +9,14 @@
 
 build/python-urwid:: build-docs-test-stamp
 build-docs-test-stamp:
-	python setup.py test
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+	set -e; for python in $(shell pyversions -r) $(shell py3versions -r); do \
+		echo Testing with $$python; \
+		$$python setup.py test; \
+	done;
+else
+	@echo "** tests disabled"
+endif
 	python setup.py build_sphinx
 	touch build-docs-test-stamp
 




More information about the Python-modules-commits mailing list