X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FSetupFramework.py;h=79443b9d43c98540ed9b789a2da2aff931477ed7;hb=6da7266754c28754c04cf37d1974e39766a261f6;hp=a1e4e7a679e68b58ee21b6c24eb41134e645e2b7;hpb=cd635521219e7d7988ccfd9d0a173ba07217cd00;p=csit.git diff --git a/resources/libraries/python/SetupFramework.py b/resources/libraries/python/SetupFramework.py index a1e4e7a679..79443b9d43 100644 --- a/resources/libraries/python/SetupFramework.py +++ b/resources/libraries/python/SetupFramework.py @@ -54,7 +54,7 @@ def pack_framework_dir(): run(["tar", "--sparse", "--exclude-vcs", "--exclude=output*.xml", "--exclude=./tmp", "-zcf", file_name, "."], - check=True, msg="Could not pack testing framework") + msg="Could not pack testing framework") return file_name @@ -143,7 +143,9 @@ def setup_node(node, tarball, remote_tarball, results=None): node=host, err=exc)) result = False else: - logger.console('Setup of node {0} done.'.format(host)) + logger.console('Setup of node {ip} done.'.format(ip=host)) + logger.info('Setup of {type} node {ip} done.'.format(type=node['type'], + ip=host)) result = True if isinstance(results, list):