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

mitya57-guest at users.alioth.debian.org mitya57-guest at users.alioth.debian.org
Thu Feb 21 17:13:55 UTC 2013


    Date: Thursday, February 21, 2013 @ 17:13:53
  Author: mitya57-guest
Revision: 23531

debian/rules: do not use /usr/bin/nosetests-3.x, and make the tests
output more verbose.

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

Modified: packages/python-markdown/trunk/debian/changelog
===================================================================
--- packages/python-markdown/trunk/debian/changelog	2013-02-21 15:31:28 UTC (rev 23530)
+++ packages/python-markdown/trunk/debian/changelog	2013-02-21 17:13:53 UTC (rev 23531)
@@ -1,3 +1,10 @@
+python-markdown (2.2.1-4) UNRELEASED; urgency=low
+
+  * debian/rules: do not use /usr/bin/nosetests-3.x, and make the tests
+    output more verbose.
+
+ -- Dmitry Shachnev <mitya57 at gmail.com>  Thu, 21 Feb 2013 21:12:51 +0400
+
 python-markdown (2.2.1-3) unstable; urgency=low
 
   * Redirect tests stderr to stdout and don't set -x, thanks to Martin Pitt

Modified: packages/python-markdown/trunk/debian/rules
===================================================================
--- packages/python-markdown/trunk/debian/rules	2013-02-21 15:31:28 UTC (rev 23530)
+++ packages/python-markdown/trunk/debian/rules	2013-02-21 17:13:53 UTC (rev 23531)
@@ -26,14 +26,12 @@
 ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
 override_dh_auto_test:
 	set -ex; for python in $(PYTHON2); do \
-		$$python run-tests.py; \
+		$$python run-tests.py -v; \
 	done
 	cp -a tests build/lib/tests
 	2to3 -w --no-diffs build/lib/tests
-	set -ex; for pyversion in $(shell py3versions -vr); do \
-		if [ -x /usr/bin/nosetests-$$pyversion ]; then \
-			nosetests-$$pyversion -w $(CURDIR)/build/lib/tests; \
-		fi; \
+	set -ex; for python in $(shell py3versions -r); do
+		$$python /usr/bin/nosetests3 -v -w $(CURDIR)/build/lib/tests;
 	done
 	rm -r build/lib/test*
 	dh_auto_test




More information about the Python-modules-commits mailing list