Coverage Analysis: Update Test Case Status
Modify the condition in the parse_testplan function to align with the changes in the Status class. Signed-off-by: Arkadiusz Cholewinski <arkadiuszx.cholewinski@intel.com>
This commit is contained in:
parent
67b7c993e1
commit
65051c8a24
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ class Json_report:
|
||||||
for element in parser:
|
for element in parser:
|
||||||
for testsuite in element:
|
for testsuite in element:
|
||||||
for testcase in testsuite['testcases']:
|
for testcase in testsuite['testcases']:
|
||||||
if testcase['status'] is None:
|
if testcase['status'] == 'None':
|
||||||
testcase_name = testcase['identifier']
|
testcase_name = testcase['identifier']
|
||||||
component_name = testcase_name[:testcase_name.find('.')]
|
component_name = testcase_name[:testcase_name.find('.')]
|
||||||
component = {
|
component = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue