ninth version
Deploy / Test, build and deploy (push) Failing after 1m6s

This commit is contained in:
2026-06-08 14:25:44 +00:00
parent e8b7d8e27c
commit 20cc8506ad
21 changed files with 847 additions and 148 deletions
+9
View File
@@ -36,6 +36,15 @@ func TestRunBacktestModeWithoutDB(t *testing.T) {
}
}
func TestHealthURLDefaultsToReadyEndpoint(t *testing.T) {
if got := HealthURL(":3300"); got != "http://127.0.0.1:3300/ready" {
t.Fatalf("HealthURL(:3300)=%s", got)
}
if got := HealthURL("127.0.0.1:3301"); got != "http://127.0.0.1:3301/ready" {
t.Fatalf("HealthURL(host)=%s", got)
}
}
func TestSeedPaperGatewayMakesSeedInstrumentsDiscoverable(t *testing.T) {
ctx := context.Background()
repo := testutil.NewMemoryRepository()