Skip to content

Commit a7acdd3

Browse files
committed
Reduce CI test log noise
1 parent d986fd0 commit a7acdd3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/deploy-github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
dotnet test "$APP_TEST_PROJECT" --no-build
5252
5353
- name: Test browser suite
54-
run: dotnet test "$UI_TEST_PROJECT" --no-build --logger "console;verbosity=detailed"
54+
run: dotnet test "$UI_TEST_PROJECT" --no-build
5555

5656
prepare_release:
5757
name: Resolve Release Version

.github/workflows/pr-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
dotnet test "$APP_TEST_PROJECT" --no-build
4747
4848
- name: Test browser suite
49-
run: dotnet test "$UI_TEST_PROJECT" --no-build --logger "console;verbosity=detailed"
49+
run: dotnet test "$UI_TEST_PROJECT" --no-build

AGENTS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,7 @@ Ask first:
453453
- brittle selectors without dedicated test attributes
454454
- progress updates that imply a fix is done before there is concrete implementation and verification evidence; keep status factual and let the user verify final behavior personally
455455
- automated test or coverage runs for UI-behavior fixes before the user has manually checked the change locally; wait for the user's confirmation before resuming automation
456+
- CI `dotnet test` steps configured with verbose or detailed console loggers that flood the logs with info output; prefer the default or otherwise minimal output that surfaces warnings and errors without noise
456457
- mixed-language root README or public entry docs; keep them English-only unless the user explicitly asks otherwise
457458
- any reintroduction of a repo-local `design/` prototype folder as a parallel source of truth; the shipped Blazor UI must be the only product reference
458459
- fake `display_*` or other presentation-only script metrics that override real TPS-derived words, segments, speed, or duration in user-facing UI

0 commit comments

Comments
 (0)