Re: [PATCH 07/10] iotests: use subprocess.run where possible

2021-05-14 Thread John Snow
On 5/12/21 5:46 PM, John Snow wrote: pylint 2.8.x adds warnings whenever we use Popen calls without using 'with', so it's desirable to convert synchronous calls to run() invocations where applicable. (Though, this trades one pylint warning for another due to a pylint bug, which I've silenced

[PATCH 07/10] iotests: use subprocess.run where possible

2021-05-12 Thread John Snow
pylint 2.8.x adds warnings whenever we use Popen calls without using 'with', so it's desirable to convert synchronous calls to run() invocations where applicable. (Though, this trades one pylint warning for another due to a pylint bug, which I've silenced with a pragma and a link to the bug.)