[PATCH v4 2/3] iotests: add JobRunner class

2020-05-13 Thread John Snow
The idea is that instead of increasing the arguments to job_run all the time, create a more general-purpose job runner that can be subclassed to do interesting things with. pylint note: the 'callbacks' option guards against unused warning arguments in functions designated as callbacks. It does not

Re: [PATCH v4 2/3] iotests: add JobRunner class

2020-05-14 Thread Kevin Wolf
Am 14.05.2020 um 04:25 hat John Snow geschrieben: > The idea is that instead of increasing the arguments to job_run all the > time, create a more general-purpose job runner that can be subclassed to > do interesting things with. > > pylint note: the 'callbacks' option guards against unused warning

Re: [PATCH v4 2/3] iotests: add JobRunner class

2020-05-14 Thread John Snow
On 5/14/20 11:40 AM, Kevin Wolf wrote: > Am 14.05.2020 um 04:25 hat John Snow geschrieben: >> The idea is that instead of increasing the arguments to job_run all the >> time, create a more general-purpose job runner that can be subclassed to >> do interesting things with. >> >> pylint note: the