You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Log warnings when a need referenced by source/test links is not found."""
338
+
# TODO: print github annotations as in https://github.com/eclipse-score/bazel_registry/blob/7423b9996a45dd0a9ec868e06a970330ee71cf4f/tools/verify_semver_compatibility_level.py#L126-L129
339
+
forninsource_code_links.links.CodeLinks:
340
+
LOGGER.warning(
341
+
f"{n.file}:{n.line}: Could not find {source_code_links.need} "
342
+
"in documentation [CODE LINK]",
343
+
type="score_source_code_linker",
344
+
)
345
+
forninsource_code_links.links.TestLinks:
346
+
LOGGER.warning(
347
+
f"{n.file}:{n.line}: Could not find {source_code_links.need} "
# TODO: print github annotations as in https://github.com/eclipse-score/bazel_registry/blob/7423b9996a45dd0a9ec868e06a970330ee71cf4f/tools/verify_semver_compatibility_level.py#L126-L129
362
-
forninsource_code_links.links.CodeLinks:
363
-
LOGGER.warning(
364
-
f"{n.file}:{n.line}: Could not find {source_code_links.need} "
365
-
"in documentation [CODE LINK]",
366
-
type="score_source_code_linker",
367
-
)
368
-
forninsource_code_links.links.TestLinks:
369
-
LOGGER.warning(
370
-
f"{n.file}:{n.line}: Could not find {source_code_links.need} "
0 commit comments