[Python-modules-commits] r23642 - in packages/scipy/trunk/debian (3 files)
jtaylor-guest at users.alioth.debian.org
jtaylor-guest at users.alioth.debian.org
Sun Mar 3 17:59:23 UTC 2013
Date: Sunday, March 3, 2013 @ 17:59:21
Author: jtaylor-guest
Revision: 23642
also fail on test failures not only test errors
Modified:
packages/scipy/trunk/debian/changelog
packages/scipy/trunk/debian/tests/python2
packages/scipy/trunk/debian/tests/python3
Modified: packages/scipy/trunk/debian/changelog
===================================================================
--- packages/scipy/trunk/debian/changelog 2013-03-03 14:39:47 UTC (rev 23641)
+++ packages/scipy/trunk/debian/changelog 2013-03-03 17:59:21 UTC (rev 23642)
@@ -1,3 +1,9 @@
+python-scipy (0.11.0+dfsg1-2) UNRELEASED; urgency=low
+
+ * also fail on test failures not only test errors
+
+ -- Julian Taylor <jtaylor.debian at googlemail.com> Sun, 03 Mar 2013 18:53:39 +0100
+
python-scipy (0.11.0+dfsg1-1) experimental; urgency=low
* New upstream release
Modified: packages/scipy/trunk/debian/tests/python2
===================================================================
--- packages/scipy/trunk/debian/tests/python2 2013-03-03 14:39:47 UTC (rev 23641)
+++ packages/scipy/trunk/debian/tests/python2 2013-03-03 17:59:21 UTC (rev 23642)
@@ -15,7 +15,7 @@
]
r = $TESTPKG.test(label='$TESTMODE', verbose=2);
errors = []
-for e in r.errors:
+for e in (r.errors + r.failures):
if not any(re.search(s, e[0].id()) for s in skip):
print e[0].id()
errors.append(e)
Modified: packages/scipy/trunk/debian/tests/python3
===================================================================
--- packages/scipy/trunk/debian/tests/python3 2013-03-03 14:39:47 UTC (rev 23641)
+++ packages/scipy/trunk/debian/tests/python3 2013-03-03 17:59:21 UTC (rev 23642)
@@ -15,7 +15,7 @@
]
r = $TESTPKG.test(label='$TESTMODE', verbose=2);
errors = []
-for e in r.errors:
+for e in (r.errors + r.failures):
if not any(re.search(s, e[0].id()) for s in skip):
print(e[0].id())
errors.append(e)
More information about the Python-modules-commits
mailing list