go/core/test/e2e/{interaction,lifecycle}_test.go read KAGENT_E2E_GRPC_TARGET and t.Skip when it is unset. That variable is set nowhere in the repo — only read.
$ go test ./core/test/e2e/... -v
--- SKIP: TestAgentInstanceInteraction (0.00s)
--- SKIP: TestAgentInstanceCheckpoint (0.00s)
... 8 of 8 skipped
ok github.com/kagent-dev/kagent/go/core/test/e2e 0.858s
make e2e is green while proving nothing, and the package reports ok, so nothing surfaces the gap. This is the suite that covers AgentInstance creation, gateway routing, Substrate actor transport, and the model call.
Either wire the target in CI, or fail loudly when it is unset so a skipped run is visible.
Part of #2574.
go/core/test/e2e/{interaction,lifecycle}_test.goreadKAGENT_E2E_GRPC_TARGETandt.Skipwhen it is unset. That variable is set nowhere in the repo — only read.make e2eis green while proving nothing, and the package reportsok, so nothing surfaces the gap. This is the suite that covers AgentInstance creation, gateway routing, Substrate actor transport, and the model call.Either wire the target in CI, or fail loudly when it is unset so a skipped run is visible.
Part of #2574.