@@ -531,6 +531,7 @@ def collect_changes(testrail_session: TestRail, report):
531
531
raise ValueError ("Release reporting currently not supported" )
532
532
533
533
metadata = None
534
+ logging .warning (f"Metadata here { report .get ('tests' )} ..." )
534
535
for test in report .get ("tests" ):
535
536
if test .get ("metadata" ):
536
537
metadata = test .get ("metadata" )
@@ -657,8 +658,7 @@ def collect_changes(testrail_session: TestRail, report):
657
658
results_by_suite [suite_id ][test_case ] = outcome
658
659
if suite_id != last_suite_id :
659
660
# When we get the last test_case in a suite, add entry, run, results
660
- logging .warning (f"Here new suite: { suite_id } , { last_suite_id } " )
661
- if last_suite_id and not os .environ .get ("FX_L10N" ):
661
+ if last_suite_id :
662
662
logging .info ("n-1 run" )
663
663
cases_in_suite = list (results_by_suite [last_suite_id ].keys ())
664
664
cases_in_suite = [int (n ) for n in cases_in_suite ]
@@ -695,7 +695,6 @@ def collect_changes(testrail_session: TestRail, report):
695
695
logging .info (f"n run { last_suite_id } , { last_description } " )
696
696
if os .environ .get ("FX_L10N" ):
697
697
entries = organize_l10n_entries (testrail_session , expected_plan , suite_info )
698
- logging .warning (f"Entries: { entries } , Full results: { full_test_results } " )
699
698
return merge_results (
700
699
full_test_results ,
701
700
entries ,
0 commit comments