Lines Matching +full:master +full:- +full:stats

6 http://robot-framework.readthedocs.io/en/3.0/autodoc/robot.result.html
33 info = " For more information: " + this_program + " -h"
45 " http://robot-framework.readthedocs.io/en/3.0/autodoc/robot.result.html"
48 prefix_chars="-+",
52 "--source",
53 "-s",
61 "--dest",
62 "-d",
70 "--version_id",
73 ' e.g. "v2.1-215-g6e7eacb". This parameter is required.'
78 "--platform",
86 "--level",
89 ' "Master", "OBMC920". This parameter is required.'
94 "--test_phase",
103 "--subsystem",
112 "--processor",
179 Parse the robot-generated output.xml file and extract various test
184 xml_file_path The path to a Robot-generated output.xml
190 (e.g. "v2.1-215-g6e7eacb").
193 (e.g. "Master").
212 stats = result.statistics
213 print("--------------------------------------")
216 stats.total.critical.passed + stats.total.critical.failed
218 total_critical_passed = stats.total.critical.passed
219 total_critical_failed = stats.total.critical.failed
224 total_non_critical_tc = stats.total.passed + stats.total.failed
225 total_non_critical_passed = stats.total.passed
226 total_non_critical_failed = stats.total.failed
236 print("Total Non-Critical Test Failed:\t %d" % total_non_critical_failed)
237 print("Total Non-Critical Test Passed:\t %d" % total_non_critical_passed)
240 print("--------------------------------------")
263 l_pse_rel = "Master"
320 l_timestamp = datetime.datetime.utcnow().strftime("%Y-%m-%d-%H-%M-%S")
321 # Example: 2017-02-20-08-47-22_Witherspoon.csv
341 # Format datetime from robot output.xml to "%Y-%m-%d-%H-%M-%S"
383 Convert the time from %Y%m%d %H:%M:%S.%f format to %Y-%m-%d-%H-%M-%S format
391 The date returned will be in the following format: %Y-%m-%d-%H-%M-%S
396 # 2017-02-06-05-05-19
397 l_str = l_str.strftime("%Y-%m-%d-%H-%M-%S")
413 with open(xml_file_path, "rt", encoding="utf-8") as output:
417 # /etc/os-release output is logged in the XML as msg
418 # Example: ${output} = VERSION_ID="v1.99.2-71-gbc49f79"
420 # Get BMC version (e.g. v1.99.1-96-g2a46570)
421 bmc_version_id = str(node.text.split("VERSION_ID=")[1])[1:-1]