Revision: 5c5b3f889c47
Branch: default
Author: Anssi Syrjäsalo
Date: Wed May 29 03:57:10 2013
Log: Added property for SkipTeardownOnExit
Update issue 1445
Added property for SkipTeardownOnExit.
http://code.google.com/p/robotframework/source/detail?r=5c5b3f889c47
Modified:
/src/robot/conf/settings.py
=======================================
--- /src/robot/conf/settings.py Wed May 29 03:45:04 2013
+++ /src/robot/conf/settings.py Wed May 29 03:57:10 2013
@@ -367,6 +367,11 @@
return (self['ExitOnFailure'] or
any(mode == 'EXITONFAILURE' for mode in self['RunMode']))
+ @property
+ def skip_teardown_on_exit(self):
+ return (self['SkipTeardownOnExit'] or
+ any(mode == 'SKIPTEARDOWNONEXIT' for mode in
self['RunMode']))
+
class RebotSettings(_BaseSettings):
_extra_cli_opts = {'Output' : ('output', 'NONE'),
--
---
You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.