[Python-modules-commits] r23643 - in packages/scipy/trunk/debian (changelog tests/python3)

jtaylor-guest at users.alioth.debian.org jtaylor-guest at users.alioth.debian.org
Sun Mar 3 17:59:35 UTC 2013


    Date: Sunday, March 3, 2013 @ 17:59:34
  Author: jtaylor-guest
Revision: 23643

skip failing test_mio on big endian python3 >= 3.3

Modified:
  packages/scipy/trunk/debian/changelog
  packages/scipy/trunk/debian/tests/python3

Modified: packages/scipy/trunk/debian/changelog
===================================================================
--- packages/scipy/trunk/debian/changelog	2013-03-03 17:59:21 UTC (rev 23642)
+++ packages/scipy/trunk/debian/changelog	2013-03-03 17:59:34 UTC (rev 23643)
@@ -1,6 +1,7 @@
 python-scipy (0.11.0+dfsg1-2) UNRELEASED; urgency=low
 
   * also fail on test failures not only test errors
+  * skip failing test_mio on big endian python3 >= 3.2
 
  -- Julian Taylor <jtaylor.debian at googlemail.com>  Sun, 03 Mar 2013 18:53:39 +0100
 

Modified: packages/scipy/trunk/debian/tests/python3
===================================================================
--- packages/scipy/trunk/debian/tests/python3	2013-03-03 17:59:21 UTC (rev 23642)
+++ packages/scipy/trunk/debian/tests/python3	2013-03-03 17:59:34 UTC (rev 23643)
@@ -13,7 +13,12 @@
 # add failures to skip here
 skip = [
 ]
-r = $TESTPKG.test(label='$TESTMODE', verbose=2);
+import sys
+extra=""
+#http://projects.scipy.org/scipy/ticket/1858
+if sys.byteorder != "little" and sys.version_info[1] > 2:
+    extra=["-e", "test_mio"]
+r = $TESTPKG.test(label='$TESTMODE', verbose=2, extra_argv=extra);
 errors = []
 for e in (r.errors + r.failures):
     if not any(re.search(s, e[0].id()) for s in skip):




More information about the Python-modules-commits mailing list