Files
NowChessSystems/test
T
Janis 4850b23e19
Build & Test (NowChessSystems) TeamCity build failed
feat(logging): deepen coordinator and core logging (NCS-72)
Coordinator: InstanceRegistry logs instance join/update/dead/remove;
CoordinatorGrpcServer logs new stream + first heartbeat per instance;
CoreGrpcClient logs channel open/evict and RPC success counts.

Core: GameResource replaces println with logger; RedisGameRegistry
logs store/Redis-load/DB-load and surfaces silent failures;
CoordinatorServiceHandler logs inbound gRPC commands; IoGrpcClientWrapper
and RuleSetGrpcAdapter wrap gRPC calls with WARN on failure.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-05-02 17:25:51 +02:00

11 lines
230 B
Bash
Executable File

#! /usr/bin/env bash
set -euo pipefail
./gradlew test -Dquarkus.profile=test
if [ "$#" -eq 0 ]; then
PYTHONUTF8=1 python3 jacoco-reporter/test_gaps.py
else
PYTHONUTF8=1 python3 jacoco-reporter/test_gaps.py --module "$1"
fi