diff options
author | Junio C Hamano <gitster@pobox.com> | 2024-01-30 13:34:11 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-01-30 13:34:11 -0800 |
commit | 262fa1e968e8e11884afd644e788937b70a1e53e (patch) | |
tree | b9c7d724691d514fd187ba91acb37ad1c94aa159 /t/test-lib-github-workflow-markup.sh | |
parent | c5b454771e6b086f60c7f1f139025f174bcedac9 (diff) | |
parent | 0188b2c8e015d0bb1b39bc396d38f3b73f2f8c34 (diff) |
Merge branch 'pb/ci-github-skip-logs-for-broken-tests'
GitHub CI update.
* pb/ci-github-skip-logs-for-broken-tests:
ci(github): also skip logs of broken test cases
Diffstat (limited to 't/test-lib-github-workflow-markup.sh')
-rw-r--r-- | t/test-lib-github-workflow-markup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-lib-github-workflow-markup.sh b/t/test-lib-github-workflow-markup.sh index 970c6538cb..33405c90d7 100644 --- a/t/test-lib-github-workflow-markup.sh +++ b/t/test-lib-github-workflow-markup.sh @@ -42,8 +42,8 @@ finalize_test_case_output () { fixed) echo >>$github_markup_output "::notice::fixed: $this_test.$test_count $1" ;; - ok) - # Exit without printing the "ok" tests + ok|broken) + # Exit without printing the "ok" or ""broken" tests return ;; esac |