Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def get_checks_errors(client: Client, commit_sha: str, branch_name: str):
query = f"""{_checks_latest_test_status_cte(commit_sha, branch_name)}
SELECT job_status, job_name, status AS test_status, test_name, results_link
FROM latest_test_status
WHERE job_status = 'error' AND test_status NOT IN ('OK', 'SKIPPED')
WHERE job_status = 'error' AND test_status NOT IN ('OK', 'SKIPPED', 'BROKEN')
ORDER BY job_name, test_name
"""
return query_dataframe_with_retry(client, query)
Expand Down
Loading