Skip to content

Commit

Permalink
Coverage Analysis: Update Test Case Status
Browse files Browse the repository at this point in the history
Modify the condition in the parse_testplan
function to align with the changes in the Status class.

Signed-off-by: Arkadiusz Cholewinski <[email protected]>
  • Loading branch information
gbarkadiusz authored and nashif committed Aug 22, 2024
1 parent 67b7c99 commit 65051c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/coverage/coverage_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def parse_testplan(self, testplan_path):
for element in parser:
for testsuite in element:
for testcase in testsuite['testcases']:
if testcase['status'] is None:
if testcase['status'] == 'None':
testcase_name = testcase['identifier']
component_name = testcase_name[:testcase_name.find('.')]
component = {
Expand Down

0 comments on commit 65051c8

Please sign in to comment.