From 5e09a02324c201db9fc4e81f89e9247f278e8246 Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Wed, 8 Jun 2022 16:45:47 -0600 Subject: [PATCH] sta_connect2.py : output the location of the results dowards end of test. Signed-off-by: Chuck SmileyRekiere --- py-scripts/sta_connect2.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/py-scripts/sta_connect2.py b/py-scripts/sta_connect2.py index cc29b995..a46c9b73 100755 --- a/py-scripts/sta_connect2.py +++ b/py-scripts/sta_connect2.py @@ -1106,6 +1106,13 @@ CLI Example for kpi.csv, variable tx/rx rates, and pdu size: if not args.no_cleanup: staConnect.cleanup() + # Print path to results + logger.info("Test Results HTML located: {report}".format(report=report.write_output_html)) + + if platform.system() == 'Linux': + logger.info("Test Results PDF located: {report}".format(report=report.write_output_pdf)) + + # Added Exit codes if not is_passing: logger.info("FAIL: Some tests failed")