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

Brian Warner warner at users.sourceforge.net
Tue Oct 18 06:29:58 UTC 2005


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

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

stop using deprecated Trial arguments, at least for TwistedTrial

	* buildbot/process/process_twisted.py (TwistedTrial): update Trial
	arguments to accomodate Twisted >=2.1.0 . I will have to figure
	out what to do about other projects: the correct options for
	recent Twisteds will not work for older ones.


Index: process_twisted.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/process/process_twisted.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- process_twisted.py	17 Jul 2005 23:28:33 -0000	1.38
+++ process_twisted.py	18 Oct 2005 06:29:56 -0000	1.39
@@ -19,7 +19,10 @@
 
 class TwistedTrial(Trial):
     tests = "twisted"
-    recurse = True
+    # the Trial in Twisted >=2.1.0 has --recurse on by default, and -to
+    # turned into --reporter=bwverbose .
+    recurse = False
+    trialMode = "--reporter=bwverbose"
     testpath = None
     trial = "./bin/trial"
 





More information about the Commits mailing list