Commit 6306732d authored by Rafael Monnerat's avatar Rafael Monnerat

More verbose on test agent logs.

parent 417475a5
...@@ -279,7 +279,7 @@ class SoftwareReleaseTester(RPCRetry): ...@@ -279,7 +279,7 @@ class SoftwareReleaseTester(RPCRetry):
""" """
Interrupt a running test sequence, putting it in idle state. Interrupt a running test sequence, putting it in idle state.
""" """
self._logger.info('Invoking TearDown for %s@%s' % self.url, self.name) self._logger.info('Invoking TearDown for %s@%s' % (self.url, self.name))
if self.request_kw is not None: if self.request_kw is not None:
self.destroy() self.destroy()
self.uninstall() self.uninstall()
...@@ -419,6 +419,9 @@ def main(): ...@@ -419,6 +419,9 @@ def main():
more_tests: more_tests:
test_line = test_result.start( test_line = test_result.start(
exclude_list=list(ran_test_set)) exclude_list=list(ran_test_set))
logger.info("Test Line: %s " % test_line)
logger.info("Ran Test Set: %s " % ran_test_set)
logger.info("Running test dict: %s " % running_test_dict)
if test_line is None: if test_line is None:
more_tests = False more_tests = False
break break
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment