Skip to content

Commit 4b0eb33

Browse files
committed
remove confusing job status column from known fails table
1 parent 8fd1ba5 commit 4b0eb33

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/actions/create_workflow_report/create_workflow_report.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,9 @@ def get_checks_known_fails(
229229
if len(known_fails) == 0:
230230
return pd.DataFrame()
231231

232-
query = f"""SELECT job_status, job_name, status as test_status, test_name, results_link
232+
query = f"""SELECT job_name, status as test_status, test_name, results_link
233233
FROM (
234234
SELECT
235-
argMax(check_status, check_start_time) as job_status,
236235
check_name as job_name,
237236
argMax(test_status, check_start_time) as status,
238237
test_name,

0 commit comments

Comments
 (0)