[Python-modules-commits] r31824 - in packages/numpy/trunk/debian (changelog rules)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sun Feb 8 18:57:19 UTC 2015


    Date: Sunday, February 8, 2015 @ 18:57:18
  Author: morph
Revision: 31824

* debian/rules
  - don't ignore failures when running unittests; Closes: #721100

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

Modified: packages/numpy/trunk/debian/changelog
===================================================================
--- packages/numpy/trunk/debian/changelog	2015-02-08 18:46:56 UTC (rev 31823)
+++ packages/numpy/trunk/debian/changelog	2015-02-08 18:57:18 UTC (rev 31824)
@@ -11,8 +11,10 @@
   * debian/{python-numpy-doc.install, patches/adapt_swig_docs_to_debian.patch}
     - install SWIG interface for Numpy; thanks to Julian Taylor for the report;
       Closes: #703001
+  * debian/rules
+    - don't ignore failures when running unittests; Closes: #721100
 
- -- Sandro Tosi <morph at debian.org>  Sun, 08 Feb 2015 14:47:35 +0000
+ -- Sandro Tosi <morph at debian.org>  Sun, 08 Feb 2015 18:56:36 +0000
 
 python-numpy (1:1.9.0~rc1-1) experimental; urgency=medium
 

Modified: packages/numpy/trunk/debian/rules
===================================================================
--- packages/numpy/trunk/debian/rules	2015-02-08 18:46:56 UTC (rev 31823)
+++ packages/numpy/trunk/debian/rules	2015-02-08 18:57:18 UTC (rev 31824)
@@ -157,14 +157,14 @@
 	# source directory, so we need to mess with the import order so to
 	# select the code in the installation path
 ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
-	-set -e; for v in $(PY2VERS) ; do \
+	set -e; for v in $(PY2VERS) ; do \
 		echo "-- running tests for "$$v" plain --" ; \
 		python$$v -c "import sys ; sys.path.insert(0, '$(CURDIR)/debian/tmp/usr/lib/python$$v/dist-packages/') ; import numpy; numpy.test(verbose=5)" ; \
 		echo "-- running tests for "$$v" debug --" ; \
 		python$$v-dbg -c "import sys ; sys.path.insert(0, '$(CURDIR)/debian/tmp/usr/lib/python$$v/dist-packages/') ; import numpy; numpy.test(verbose=5)" ; \
 	done
 	# Python 3.2 maps to python3/ dir alone? bah
-	-set -e; for v in $(PY3VERS) ; do \
+	set -e; for v in $(PY3VERS) ; do \
 		echo "-- running tests for "$$v" plain --" ; \
 		python$$v -c "import sys ; sys.path.insert(0, '$(CURDIR)/debian/tmp/usr/lib/python3/dist-packages/') ; import numpy; numpy.test(verbose=5)" ; \
 		echo "-- running tests for "$$v" debug --" ; \




More information about the Python-modules-commits mailing list