Bump neofs-testlib version 0.3.0 -> 0.4.0

Signed-off-by: Vladimir Avdeev <v.avdeev@yadro.com>
This commit is contained in:
Vladimir Avdeev 2022-11-07 10:10:11 +03:00 committed by Vladimir Avdeev
parent 14a4d014d1
commit bf2f638618
11 changed files with 19 additions and 15 deletions

View file

@ -41,9 +41,7 @@ class RemoteProcess:
Returns:
RemoteProcess instance for further examination
"""
remote_process = cls(
cmd=command, process_dir=f"/tmp/proc_{uuid.uuid4()}", shell=shell
)
remote_process = cls(cmd=command, process_dir=f"/tmp/proc_{uuid.uuid4()}", shell=shell)
remote_process._create_process_dir()
remote_process._generate_command_script(command)
remote_process._start_process()