@@ -788,15 +788,15 @@ def get_failed_cases_report_parts(self) -> t.List[str]:
788788 items = failed_test_cases_cur_branch ,
789789 headers = [
790790 'Test Case' ,
791- 'Test Script File Path' ,
791+ 'Test App Path' ,
792792 'Failure Reason' ,
793793 f'Failures on your branch (40 latest testcases)' ,
794794 'Dut Log URL' ,
795795 'Create Known Failure Case Jira' ,
796796 'Job URL' ,
797797 'Grafana URL' ,
798798 ],
799- row_attrs = ['name' , 'file ' , 'failure' , 'dut_log_url' , 'ci_job_url' , 'ci_dashboard_url' ],
799+ row_attrs = ['name' , 'app_path ' , 'failure' , 'dut_log_url' , 'ci_job_url' , 'ci_dashboard_url' ],
800800 value_functions = [
801801 (
802802 'Failures on your branch (40 latest testcases)' ,
@@ -813,15 +813,15 @@ def get_failed_cases_report_parts(self) -> t.List[str]:
813813 items = failed_test_cases_other_branch ,
814814 headers = [
815815 'Test Case' ,
816- 'Test Script File Path' ,
816+ 'Test App Path' ,
817817 'Failure Reason' ,
818818 'Cases that failed in other branches as well (40 latest testcases)' ,
819819 'Dut Log URL' ,
820820 'Create Known Failure Case Jira' ,
821821 'Job URL' ,
822822 'Grafana URL' ,
823823 ],
824- row_attrs = ['name' , 'file ' , 'failure' , 'dut_log_url' , 'ci_job_url' , 'ci_dashboard_url' ],
824+ row_attrs = ['name' , 'app_path ' , 'failure' , 'dut_log_url' , 'ci_job_url' , 'ci_dashboard_url' ],
825825 value_functions = [
826826 (
827827 'Cases that failed in other branches as well (40 latest testcases)' ,
@@ -836,8 +836,8 @@ def get_failed_cases_report_parts(self) -> t.List[str]:
836836 known_failures_cases_table_section = self .create_table_section (
837837 title = self .report_titles_map ['failed_known' ],
838838 items = known_failures ,
839- headers = ['Test Case' , 'Test Script File Path' , 'Failure Reason' , 'Job URL' , 'Grafana URL' ],
840- row_attrs = ['name' , 'file ' , 'failure' , 'ci_job_url' , 'ci_dashboard_url' ],
839+ headers = ['Test Case' , 'Test App Path' , 'Failure Reason' , 'Job URL' , 'Grafana URL' ],
840+ row_attrs = ['name' , 'app_path ' , 'failure' , 'ci_job_url' , 'ci_dashboard_url' ],
841841 )
842842 failed_cases_report_url = self .write_report_to_file (
843843 self .generate_html_report (
@@ -870,8 +870,8 @@ def get_skipped_cases_report_parts(self) -> t.List[str]:
870870 skipped_cases_table_section = self .create_table_section (
871871 title = self .report_titles_map ['skipped' ],
872872 items = skipped_test_cases ,
873- headers = ['Test Case' , 'Test Script File Path' , 'Skipped Reason' , 'Grafana URL' ],
874- row_attrs = ['name' , 'file ' , 'skipped' , 'ci_dashboard_url' ],
873+ headers = ['Test Case' , 'Test App Path' , 'Skipped Reason' , 'Grafana URL' ],
874+ row_attrs = ['name' , 'app_path ' , 'skipped' , 'ci_dashboard_url' ],
875875 )
876876 skipped_cases_report_url = self .write_report_to_file (
877877 self .generate_html_report ('' .join (skipped_cases_table_section )),
@@ -892,8 +892,8 @@ def get_succeeded_cases_report_parts(self) -> t.List[str]:
892892 succeeded_cases_table_section = self .create_table_section (
893893 title = self .report_titles_map ['succeeded' ],
894894 items = succeeded_test_cases ,
895- headers = ['Test Case' , 'Test Script File Path' , 'Job URL' , 'Grafana URL' ],
896- row_attrs = ['name' , 'file ' , 'ci_job_url' , 'ci_dashboard_url' ],
895+ headers = ['Test Case' , 'Test App Path' , 'Job URL' , 'Grafana URL' ],
896+ row_attrs = ['name' , 'app_path ' , 'ci_job_url' , 'ci_dashboard_url' ],
897897 )
898898 succeeded_cases_report_url = self .write_report_to_file (
899899 self .generate_html_report ('' .join (succeeded_cases_table_section )),
0 commit comments