4850b23e19
Build & Test (NowChessSystems) TeamCity build failed
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>
11 lines
230 B
Bash
Executable File
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
|