File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
_tooling/extensions/score_metamodel Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 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
6159templates_path = ["_templates" ]
You can’t perform that action at this time.
0 commit comments