Skip to content

Commit

Permalink
Remove link from emojis in summary md
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Dec 15, 2023
1 parent f0b959b commit 83c6ba1
Show file tree
Hide file tree
Showing 71 changed files with 278 additions and 1,067 deletions.
10 changes: 5 additions & 5 deletions python/publish/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,11 +446,11 @@ def get_link_and_tooltip_label_md(label: str, tooltip: str) -> str:


all_tests_label_md = 'tests'
passed_tests_label_md = get_link_and_tooltip_label_md(':heavy_check_mark:', 'passed tests')
skipped_tests_label_md = get_link_and_tooltip_label_md(':zzz:', 'skipped / disabled tests')
failed_tests_label_md = get_link_and_tooltip_label_md(':x:', 'failed tests')
test_errors_label_md = get_link_and_tooltip_label_md(':fire:', 'test errors')
duration_label_md = get_link_and_tooltip_label_md(':stopwatch:', 'duration of all tests')
passed_tests_label_md = ':heavy_check_mark:'
skipped_tests_label_md = ':zzz:'
failed_tests_label_md = ':x:'
test_errors_label_md = ':fire:'
duration_label_md = ':stopwatch:'


def get_short_summary_md(stats: UnitTestRunResultsOrDeltaResults) -> str:
Expand Down
19 changes: 4 additions & 15 deletions python/test/files/dart/json/tests.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,10 @@
'output': {
'title': '2 errors, 1 fail, 1 skipped, 16 pass in 0s',
'summary':
'20 tests\u2002\u2003\u200316 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'0s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n\u205f\u2004'
'4 suites\u2003\u2003\u205f\u20041 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004'
'1 files\u2004\u2002\u2003\u2003\u205f\u20041 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\u2003\u20032 '
'[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/'
'blob/VERSION/README.md#the-symbols "test errors")\n\nResults for '
'commit commit s.\n\n'
'20 tests\u2002\u2003\u200316 :heavy_check_mark:\u2003\u20030s '
':stopwatch:\n\u205f\u20044 suites\u2003\u2003\u205f\u20041 :zzz:\n\u205f\u2004'
'1 files\u2004\u2002\u2003\u2003\u205f\u20041 :x:\u2003\u20032 :fire:\n'
'\nResults for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMTQqAIBBGr'
'yKuW1REiy4TYkVDpTHqKrp74w+au3nvY97DNzhXwyfWNYwbBzbAQLA4FBa0ImwJabB+6j'
'PMxknpP8diDrhTK4pNwFmJFVGjz5BBp3LR31UwitIL/MsF/tekvi6wBOliZhf8/QAMgVR'
Expand Down
18 changes: 3 additions & 15 deletions python/test/files/junit-xml/bazel/suite-logs.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,9 @@
'output': {
'title': '1 errors in 0s',
'summary':
'1 tests\u2002\u2003\u20030 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'0s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n1 '
'suites\u2003\u20030 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n1 '
'files\u2004\u2002\u2003\u20030 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\u2003\u20031 '
'[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/'
'blob/VERSION/README.md#the-symbols "test errors")\n\nResults for '
'commit commit s.\n\n'
'1 tests\u2002\u2003\u20030 :heavy_check_mark:\u2003\u20030s '
':stopwatch:\n1 suites\u2003\u20030 :zzz:\n1 files\u2004\u2002\u2003\u2003'
'0 :x:\u2003\u20031 :fire:\n\nResults for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMMQ6AIBAEv'
'0KoLbT1M4QgxIsC5g4q498liHp0OzvJnNLBbknOYhqEpAzpgyWjThBDwbFgEelVdSvKxn'
'CpaIOjO5yGvTssYsQWwRyITZ57+K9VZrHKvGWi95AKtCVo1fK6AX55nzvdAAAA\n',
Expand Down
16 changes: 3 additions & 13 deletions python/test/files/junit-xml/jest/jest-junit.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,9 @@
'output': {
'title': 'All 2 tests pass in 0s',
'summary':
'2 tests\u2002\u2003\u20032 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'0s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n1 '
'suites\u2003\u20030 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n1 '
'files\u2004\u2002\u2003\u20030 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\n\nResults for '
'commit commit s.\n\n'
'2 tests\u2002\u2003\u20032 :heavy_check_mark:\u2003\u20030s '
':stopwatch:\n1 suites\u2003\u20030 :zzz:\n1 files\u2004\u2002\u2003\u2003'
'0 :x:\n\nResults for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBBEr'
'0KoLdTSyxCCEDfyMQtUxrsLCgrdvJnJO6kCLT1dyDQQ6iOED9aIPICzCceEaQh5mmtmPg'
'rRFzsc7ZspDrorJKLD0mC01Zdjq3v5tz3cyB5uXcIZAyFBScRvnF43yWbLod0AAAA=\n',
Expand Down
28 changes: 4 additions & 24 deletions python/test/files/junit-xml/junit.multiresult.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,10 @@
'output': {
'title': '1 errors, 1 fail, 1 skipped, 1 pass in 1s',
'summary':
'1 files\u2004\u20031 suites\u2004\u2003\u20021s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n4 '
'tests\u20031 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003'
'1 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\u20031 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\u20031 '
'[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/'
'blob/VERSION/README.md#the-symbols "test errors")\n4 runs\u2006\u2003'
'-2 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003'
'3 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\u20032 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\u20031 '
'[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/'
'blob/VERSION/README.md#the-symbols "test errors")\n\nResults for '
'commit commit s.\n\n'
'1 files\u2004\u20031 suites\u2004\u2003\u20021s :stopwatch:\n4 tests\u2003'
'1 :heavy_check_mark:\u20031 :zzz:\u20031 :x:\u20031 :fire:\n4 runs\u2006\u2003'
'-2 :heavy_check_mark:\u20033 :zzz:\u20032 :x:\u20031 :fire:\n\n'
'Results for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr'
'0KotfBTeRlCEONGPmYXKuPdlQhEujdvkrn4BkYTX9jQMU4RQoU1ogzgXcZXhKTmsgVFpf'
'5S0AFnc2wSTHNoRI/5wehKL82S68d6fLmpcK5V/48pby2EF/JitEt+P6y+BE/eAAAA\n',
Expand Down
18 changes: 3 additions & 15 deletions python/test/files/junit-xml/minimal-attributes.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,9 @@
'output': {
'title': '1 errors, 1 fail, 1 skipped, 1 pass in 0s',
'summary':
'4 tests\u2002\u2003\u20031 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'0s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n1 '
'suites\u2003\u20031 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n1 '
'files\u2004\u2002\u2003\u20031 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\u2003\u20031 '
'[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/'
'blob/VERSION/README.md#the-symbols "test errors")\n\nResults for '
'commit commit s.\n\n'
'4 tests\u2002\u2003\u20031 :heavy_check_mark:\u2003\u20030s '
':stopwatch:\n1 suites\u2003\u20031 :zzz:\n1 files\u2004\u2002\u2003\u2003'
'1 :x:\u2003\u20031 :fire:\n\nResults for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr'
'0KoLTSx8jKGIMSNfMwClfHuAoJC92Z2MxeVoISjC5kGQl0A/8EWkHmwJuIYMR58Os11ry'
'5wXn6LOODshGSgOiEQLRaDwdRemm3u5b+WuYllblvcag0+QlnE7YzeD8XajRvdAAAA\n',
Expand Down
24 changes: 4 additions & 20 deletions python/test/files/junit-xml/mocha/latex-utensils.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,10 @@
'title': 'All 101 tests pass in 0s',
'summary':
'\u205f\u2004\u205f\u20041 files\u2004\u2003\u205f\u2004\u205f\u20041 '
'suites\u2004\u2003\u20020s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n'
'101 tests\u2003101 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003'
'0 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\u20030 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\n109 runs\u2006\u2003'
'109 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003'
'0 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\u20030 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\n\nResults for '
'commit commit s.\n\n'
'suites\u2004\u2003\u20020s :stopwatch:\n101 tests\u2003101 '
':heavy_check_mark:\u20030 :zzz:\u20030 :x:\n109 runs\u2006\u2003109 '
':heavy_check_mark:\u20030 :zzz:\u20030 :x:\n\nResults for commit '
'commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/12MMQ6AIBAEv'
'0KoLaDUzxCCEC8imAMq498liIJ2N7O5OagBqwOdCB8IDQniC3NCGcG7jCxjHmKZGH9IhK'
'TUX62w9x/CSLAfoRE9VoPJ3c2xQks204qFu2Dhvqf8tkHMUC8SFknPC30yEpLlAAAA\n',
Expand Down
18 changes: 3 additions & 15 deletions python/test/files/junit-xml/no-attributes.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,9 @@
'output': {
'title': '1 errors, 1 fail, 1 skipped, 1 pass in 0s',
'summary':
'4 tests\u2002\u2003\u20031 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'0s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n1 '
'suites\u2003\u20031 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n1 '
'files\u2004\u2002\u2003\u20031 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\u2003\u20031 '
'[:fire:](https://github.com/EnricoMi/publish-unit-test-result-action/'
'blob/VERSION/README.md#the-symbols "test errors")\n\nResults for '
'commit commit s.\n\n'
'4 tests\u2002\u2003\u20031 :heavy_check_mark:\u2003\u20030s '
':stopwatch:\n1 suites\u2003\u20031 :zzz:\n1 files\u2004\u2002\u2003\u2003'
'1 :x:\u2003\u20031 :fire:\n\nResults for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr'
'0KoLTSx8jKGIMSNfMwClfHuAoJC92Z2MxeVoISjC5kGQl0A/8EWkHmwJuIYMR58Os11ry'
'5wXn6LOODshGSgOiEQLRaDwdRemm3u5b+WuYllblvcag0+QlnE7YzeD8XajRvdAAAA\n',
Expand Down
16 changes: 3 additions & 13 deletions python/test/files/junit-xml/no-cases-but-tests.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,9 @@
'output': {
'title': '1 fail, 2 skipped, 3 pass in 0s',
'summary':
'6 tests\u2002\u2003\u20033 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'0s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n1 '
'suites\u2003\u20032 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n1 '
'files\u2004\u2002\u2003\u20031 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\n\nResults for '
'commit commit s.\n\n'
'6 tests\u2002\u2003\u20033 :heavy_check_mark:\u2003\u20030s '
':stopwatch:\n1 suites\u2003\u20032 :zzz:\n1 files\u2004\u2002\u2003\u2003'
'1 :x:\n\nResults for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/02MOw6AIBAFr'
'0KoLfwkFl7GEJS4UcEsUBnv7spH6N7MS+bmCo7V8ol1DePWg/th8SgcGE3YEtLhvmvMe7'
'ZeShJDETtcJPpfKAFHqkWxIhpMQfQ6975Z5yKXWuAqFrhuSXOe4AjSYnYT/HkBNCXSZd0'
Expand Down
16 changes: 3 additions & 13 deletions python/test/files/junit-xml/no-cases.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,9 @@
'output': {
'title': 'No tests found',
'summary':
'0 tests\u2002\u2003\u20030 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'0s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n1 '
'suites\u2003\u20030 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n1 '
'files\u2004\u2002\u2003\u20030 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\n\nResults for '
'commit commit s.\n\n'
'0 tests\u2002\u2003\u20030 :heavy_check_mark:\u2003\u20030s '
':stopwatch:\n1 suites\u2003\u20030 :zzz:\n1 files\u2004\u2002\u2003\u2003'
'0 :x:\n\nResults for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr'
'0K2ttDWyxiCEDfyMbtQGe8uQaNL92ZeMic49JZhVtOggAvmD9ZCOmOKFceK9cgs98LFmF'
'7seHTCafSdsESJXkMlspgy9/BfayxijWXLpBAwV3iX4k3DdQOuuvQ/3QAAAA==\n',
Expand Down
16 changes: 3 additions & 13 deletions python/test/files/junit-xml/non-junit.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,9 @@
'output': {
'title': '1 parse errors',
'summary':
'0 tests\u2002\u2003\u20030 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'0s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n0 '
'suites\u2003\u20030 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n1 '
'files\u2004\u2002\u2003\u20030 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\n1 errors\n\nResults '
'for commit commit s.\n\n'
'0 tests\u2002\u2003\u20030 :heavy_check_mark:\u2003\u20030s '
':stopwatch:\n0 suites\u2003\u20030 :zzz:\n1 files\u2004\u2002\u2003\u2003'
'0 :x:\n1 errors\n\nResults for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMywqAIBBFf'
'0Vm3aK2/UyIKQ35iBldRf+emNC4u+dcODc49JZhVcukgAvmBnOFvZDOmGLHemSWe+NizC'
'hOvAbhNPpBWKJE3VCJLKbMffzXGotYY9kyKQTMFfpSfGh4XnRU87HdAAAA\n',
Expand Down
16 changes: 3 additions & 13 deletions python/test/files/junit-xml/pytest/junit.fail.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,9 @@
'output': {
'title': '1 fail, 1 skipped, 3 pass in 2s',
'summary':
'5 tests\u2002\u2003\u20033 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'2s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n1 '
'suites\u2003\u20031 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n1 '
'files\u2004\u2002\u2003\u20031 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\n\nResults for '
'commit commit s.\n\n'
'5 tests\u2002\u2003\u20033 :heavy_check_mark:\u2003\u20032s '
':stopwatch:\n1 suites\u2003\u20031 :zzz:\n1 files\u2004\u2002\u2003\u2003'
'1 :x:\n\nResults for commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMOw6AIBAFr'
'0KoLfzExssYghA3IpgFKuPdXVEUuzez2dm5BqM8H1hTMe4jhBemiCKAs4QtIR3CderzHn'
'2UkkT3iQW25/kWWoD5CYXokExNBqPNvWuWuZu/WuIilrhsSbeuEAiexfws+HECiWEEJ90'
Expand Down
15 changes: 3 additions & 12 deletions python/test/files/junit-xml/pytest/junit.gloo.elastic.annotations
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,9 @@
'output': {
'title': 'All 10 tests pass, 4 skipped in 1m 12s',
'summary':
'14 tests\u2002\u2003\u200310 '
'[:heavy_check_mark:](https://github.com/EnricoMi/publish-unit-test-re'
'sult-action/blob/VERSION/README.md#the-symbols "passed tests")\u2003\u2003'
'1m 12s '
'[:stopwatch:](https://github.com/EnricoMi/publish-unit-test-result-ac'
'tion/blob/VERSION/README.md#the-symbols "duration of all tests")\n\u205f\u2004'
'1 suites\u2003\u2003\u205f\u20044 '
'[:zzz:](https://github.com/EnricoMi/publish-unit-test-result-action/b'
'lob/VERSION/README.md#the-symbols "skipped / disabled tests")\n\u205f\u2004'
'1 files\u2004\u2002\u2003\u2003\u205f\u20040 '
'[:x:](https://github.com/EnricoMi/publish-unit-test-result-action/blo'
'b/VERSION/README.md#the-symbols "failed tests")\n\nResults for '
'14 tests\u2002\u2003\u200310 :heavy_check_mark:\u2003\u20031m 12s '
':stopwatch:\n\u205f\u20041 suites\u2003\u2003\u205f\u20044 :zzz:\n\u205f\u2004'
'1 files\u2004\u2002\u2003\u2003\u205f\u20040 :x:\n\nResults for '
'commit commit s.\n\n'
'[test-results]:data:application/gzip;base64,H4sIAAAAAAAC/1WMQQqAIBBFr'
'yKuW1QEQZcJMaMhzRh1Fd290SxrN+/94R18Bq0cH1hTMe4C+BemgMKD3Qj7lpgWn7bugd'
Expand Down
Loading

0 comments on commit 83c6ba1

Please sign in to comment.