Skip to content

Commit 73f961f

Browse files
authored
doc: Remove html b-tags from oss_fuzz_build_status.py (#4409)
They are unsupported on the new tracker and aren't needed anyway. Example: https://issues.oss-fuzz.com/issues/379066972#comment1
1 parent 3b7d29e commit 73f961f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/clusterfuzz/_internal/cron/oss_fuzz_build_status.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ class OssFuzzBuildStatusError(Exception):
6464
def _get_issue_body(project_name, build_id, build_type):
6565
"""Return the issue body for filing new bugs."""
6666
template = ('The last {num_builds} builds for {project} have been failing.\n'
67-
'<b>Build log:</b> {log_link}\n'
67+
'Build log: {log_link}\n'
6868
'Build type: {build_type}\n\n'
6969
'To reproduce locally, please see: '
7070
'https://google.github.io/oss-fuzz/advanced-topics/reproducing'
7171
'#reproducing-build-failures\n\n'
72-
'<b>This bug tracker is not being monitored by OSS-Fuzz team.</b>'
72+
'**This bug tracker is not being monitored by OSS-Fuzz team.**'
7373
' If you have any questions, please create an issue at '
7474
'https://github.com/google/oss-fuzz/issues/new.\n\n'
7575
'**This bug will be automatically closed within a '

src/clusterfuzz/_internal/tests/appengine/handlers/cron/oss_fuzz_build_status_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -431,14 +431,14 @@ def _mock_requests_get(url, timeout=None):
431431
self.assertEqual('proj2: Fuzzing build failure', issue.summary)
432432
self.assertEqual(
433433
'The last 3 builds for proj2 have been failing.\n'
434-
'<b>Build log:</b> '
434+
'Build log: '
435435
'https://oss-fuzz-build-logs.storage.googleapis.com/'
436436
'log-proj2-id-f.txt\n'
437437
'Build type: fuzzing\n\n'
438438
'To reproduce locally, please see: '
439439
'https://google.github.io/oss-fuzz/advanced-topics/reproducing'
440440
'#reproducing-build-failures\n\n'
441-
'<b>This bug tracker is not being monitored by OSS-Fuzz team.</b> '
441+
'**This bug tracker is not being monitored by OSS-Fuzz team.** '
442442
'If you have any questions, please create an issue at '
443443
'https://github.com/google/oss-fuzz/issues/new.\n\n'
444444
'**This bug will be automatically closed within a '
@@ -450,14 +450,14 @@ def _mock_requests_get(url, timeout=None):
450450
self.assertEqual('proj6: Coverage build failure', issue.summary)
451451
self.assertEqual(
452452
'The last 3 builds for proj6 have been failing.\n'
453-
'<b>Build log:</b> '
453+
'Build log: '
454454
'https://oss-fuzz-build-logs.storage.googleapis.com/'
455455
'log-proj6-id-c.txt\n'
456456
'Build type: coverage\n\n'
457457
'To reproduce locally, please see: '
458458
'https://google.github.io/oss-fuzz/advanced-topics/reproducing'
459459
'#reproducing-build-failures\n\n'
460-
'<b>This bug tracker is not being monitored by OSS-Fuzz team.</b> '
460+
'**This bug tracker is not being monitored by OSS-Fuzz team.** '
461461
'If you have any questions, please create an issue at '
462462
'https://github.com/google/oss-fuzz/issues/new.\n\n'
463463
'**This bug will be automatically closed within a '

0 commit comments

Comments
 (0)