Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
p-gentili committed Jan 15, 2025
1 parent c18e8a1 commit 4eda8e7
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,10 @@ def _copy_ssh_id(self):
"UserKnownHostsFile=/dev/null",
f"{test_username}@{self.config['device_ip']}",
]
subprocess.check_output(cmd, stderr=subprocess.STDOUT, timeout=60)
import shlex
print(shlex.join(cmd))
subprocess.check_call(cmd, timeout=60)


@abstractmethod
def _post_run_actions(self, args):
Expand Down

0 comments on commit 4eda8e7

Please sign in to comment.