From 478fc39a87f7213361348485db6b309ced256e93 Mon Sep 17 00:00:00 2001 From: Sean Marlow Date: Mon, 17 Aug 2020 15:51:55 -0500 Subject: [PATCH] Create empty console log method for ssh backend. There's no way to get a console log from SSH based testing. --- img_proof/ipa_ssh.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/img_proof/ipa_ssh.py b/img_proof/ipa_ssh.py index e501ee2b..86822c72 100644 --- a/img_proof/ipa_ssh.py +++ b/img_proof/ipa_ssh.py @@ -120,6 +120,12 @@ def _get_instance(self): """ pass + def get_console_log(self): + """ + Return console log output if it is available. + """ + return '' # No console log for SSH backend + def _launch_instance(self): """ Do nothing.