Skip to content

Commit a4ca30d

Browse files
fix: docs:incremental reports lots of warnings on main branch (eclipse-score#1007)
1 parent c665558 commit a4ca30d

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

docs/_tooling/extensions/score_metamodel/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ def is_check_enabled(check: local_check_function | graph_check_function):
9292
# graph of other needs.
9393
for need in needs_all_needs.values():
9494
for check in enabled_local_checks:
95-
logger.info(f"Running local check {check} for need {need['id']}")
95+
logger.debug(f"Running local check {check} for need {need['id']}")
9696
check(app, need, log)
9797

9898
# Graph-Based checks: These warnings require a graph of all other needs to
9999
# be checked.
100100
needs = list(needs_all_needs.values())
101101
for check in [c for c in graph_checks if is_check_enabled(c)]:
102-
logger.info(f"Running graph check {check} for all needs")
102+
logger.debug(f"Running graph check {check} for all needs")
103103
check(app, needs, log)
104104

105105
if log.has_warnings:

docs/conf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@
5353
# via 'bazel build //docs:docs', as that command runs in a sandboxed environment.
5454
# However, when building the documentation via 'sphinx-build' or esbonio,
5555
# these entries are required to prevent the build from failing.
56-
"bazel-*",
57-
".venv_docs",
58-
"docs/_tooling/extensions/score_metamodel/tests/rst",
56+
"_tooling/extensions/score_metamodel/tests/rst",
5957
]
6058

6159
templates_path = ["_templates"]

0 commit comments

Comments
 (0)