Re: Storing the state of script between steps

2014-02-22 Thread F.R.
On 02/21/2014 09:59 PM, Denis Usanov wrote: Good evening. First of all I would like to apologize for the name of topic. I really didn't know how to name it more correctly. I mostly develop on Python some automation scripts such as deployment (it's not about fabric and may be not ssh at all),

Re: Storing the state of script between steps

2014-02-21 Thread Steven D'Aprano
On Fri, 21 Feb 2014 12:59:11 -0800, Denis Usanov wrote: > I mostly develop on Python some automation scripts such as deployment > (it's not about fabric and may be not ssh at all), testing something, > etc. In this terms I have such abstraction as "step". > > Some code: > > class IStep(object):

Re: Storing the state of script between steps

2014-02-21 Thread Cameron Simpson
On 21Feb2014 12:59, Denis Usanov wrote: > I mostly develop on Python some automation scripts such as deployment (it's > not about fabric and may be not ssh at all), testing something, etc. In this > terms I have such abstraction as "step". > > Some code: > > class IStep(object): > def run(

Storing the state of script between steps

2014-02-21 Thread Denis Usanov
Good evening. First of all I would like to apologize for the name of topic. I really didn't know how to name it more correctly. I mostly develop on Python some automation scripts such as deployment (it's not about fabric and may be not ssh at all), testing something, etc. In this terms I have