Skip to content

Commit 8f2f59e

Browse files
committed
more debug and fix report
1 parent 2de1081 commit 8f2f59e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/actions/create_workflow_report/create_workflow_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def get_checks_known_fails(
257257
"reason",
258258
df.apply(
259259
lambda row: get_known_fail_reason(
260-
row["test_name"], row["check_name"], known_fails
260+
row["test_name"], row["job_name"], known_fails
261261
),
262262
axis=1,
263263
),

ci/jobs/scripts/functional_tests_results.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ def matches_substring(substring, log, is_regex):
122122
print(f"Skip rule: Message didn't match: '{rule_data['message']}'")
123123
continue
124124

125+
print(f"Test {test_name} matched rule: {rule_data}")
125126
return rule_data["reason"]
126127

127128
return False

ci/jobs/scripts/integration_tests_runner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,7 @@ def matches_substring(substring, log, is_regex):
549549
debug_log_file.write(f"Skip rule: Message didn't match: '{message}'\n")
550550
continue
551551

552+
debug_log_file.write(f"Test {test_name} matched rule: {rule_data}\n")
552553
return rule_data["reason"]
553554

554555
return False

0 commit comments

Comments
 (0)