[Buildbot-commits] buildbot/buildbot/status/web waterfall.py, 1.29, 1.30
Brian Warner
warner at users.sourceforge.net
Tue May 27 00:52:31 UTC 2008
Update of /cvsroot/buildbot/buildbot/buildbot/status/web
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11485/buildbot/status/web
Modified Files:
waterfall.py
Log Message:
[project @ #228:perl-module-tests.patch]
Patch by Neil Hemingway <nhemingway at googlemail.com> to add a PerlModuleTest step
Original author: dustin at v.igoro.us
Date: 2008-05-27 00:05:57+00:00
Index: waterfall.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/status/web/waterfall.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- waterfall.py 22 May 2008 22:11:25 -0000 1.29
+++ waterfall.py 27 May 2008 00:52:29 -0000 1.30
@@ -110,6 +110,8 @@
number = b.getNumber()
url = path_to_build(req, b)
text = b.getText()
+ tests_failed = b.sumStepProperty('tests-failed')
+ if tests_failed: text.extend(["Failed tests: %d" % tests_failed])
# TODO: maybe add logs?
# TODO: add link to the per-build page at 'url'
c = b.getColor()
More information about the Commits
mailing list