ajack 2004/06/02 13:43:11
Modified: python/gump/runner tasks.py
python/gump/results resulter.py
python/gump/notify notifier.py
Log:
Non-'full' (partial) runs deserve their props...
Revision Changes Path
1.4 +1 -2 gump/python/gump/runner/tasks.py
Index: tasks.py
===================================================================
RCS file: /home/cvs/gump/python/gump/runner/tasks.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tasks.py 24 May 2004 16:39:08 -0000 1.3
+++ tasks.py 2 Jun 2004 20:43:11 -0000 1.4
@@ -182,8 +182,7 @@
def notify(self):
# Anything but 'all' is likely debugging.
- if self.run.getGumpSet().isFull() \
- and self.run.getWorkspace().isNotify():
+ if and self.run.getWorkspace().isNotify():
log.info('Notify about failures... ')
1.25 +1 -2 gump/python/gump/results/resulter.py
Index: resulter.py
===================================================================
RCS file: /home/cvs/gump/python/gump/results/resulter.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- resulter.py 21 May 2004 23:15:06 -0000 1.24
+++ resulter.py 2 Jun 2004 20:43:11 -0000 1.25
@@ -61,8 +61,7 @@
self.gatherResults()
elif isinstance(event,FinalizeRunEvent):
- if self.run.getGumpSet().isFull() and \
- self.run.getOptions().isResults() :
+ if self.run.getOptions().isResults() :
# In the root.
where=self.run.getOptions().getResolver().getFile( \
self.run.getWorkspace(),'results','.xml',1)
1.5 +1 -1 gump/python/gump/notify/notifier.py
Index: notifier.py
===================================================================
RCS file: /home/cvs/gump/python/gump/notify/notifier.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- notifier.py 2 Jun 2004 15:59:11 -0000 1.4
+++ notifier.py 2 Jun 2004 20:43:11 -0000 1.5
@@ -75,7 +75,7 @@
def processOtherEvent(self,event):
if isinstance(event,FinalizeRunEvent):
# Notifications are wanted...
- if self.options.isNotify() and self.gumpSet.isFull():
+ if self.options.isNotify():
# This workspace allows/wants notifications..
if self.workspace.isNotify():
# Notify
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]