[Buildbot-commits] buildbot/buildbot/process process_twisted.py,1.37,1.38

Brian Warner warner at users.sourceforge.net
Sun Jul 17 23:28:35 UTC 2005


Update of /cvsroot/buildbot/buildbot/buildbot/process
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17470/buildbot/process

Modified Files:
	process_twisted.py 
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-232
Creator:  Brian Warner <warner at monolith.lothar.com>

update twisted buildmaster a bit

	* buildbot/process/process_twisted.py
	(TwistedReactorsBuildFactory): change the treeStableTimer to 5
	minutes, to match the other twisted BuildFactories, and don't
	excuse failures in c/qt/win32 reactors any more.

	* docs/examples/twisted_master.cfg: turn off the 'threadless' and
	'freebsd' builders, since the buildslaves have been unavailable
	for quite a while


Index: process_twisted.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/process/process_twisted.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- process_twisted.py	18 Apr 2005 00:26:56 -0000	1.37
+++ process_twisted.py	17 Jul 2005 23:28:33 -0000	1.38
@@ -88,7 +88,7 @@
         self.steps.append(s(BuildDebs, warnOnWarnings=True))
 
 class TwistedReactorsBuildFactory(TwistedBaseFactory):
-    treeStableTimer = 10*60
+    treeStableTimer = 5*60
 
     def __init__(self, svnurl,
                  python="python", compileOpts=[], compileOpts2=[],
@@ -118,10 +118,10 @@
         for reactor in reactors:
             flunkOnFailure = 1
             warnOnFailure = 0
-            if reactor in ['c', 'qt', 'win32']:
-                # these are buggy, so tolerate failures for now
-                flunkOnFailure = 0
-                warnOnFailure = 1
+            #if reactor in ['c', 'qt', 'win32']:
+            #    # these are buggy, so tolerate failures for now
+            #    flunkOnFailure = 0
+            #    warnOnFailure = 1
             self.steps.append(s(RemovePYCs)) # TODO: why?
             self.steps.append(s(TwistedTrial, name=reactor,
                                 python=python, reactor=reactor,





More information about the Commits mailing list