From acc9cfc615d7cbb1929e68c1f51232dc7b83aef6 Mon Sep 17 00:00:00 2001 From: Alfonso Acosta Date: Mon, 8 Jul 2024 18:25:44 +0200 Subject: [PATCH] Stop setting tests as parallel --- cmd/soroban-rpc/internal/integrationtest/infrastructure/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/soroban-rpc/internal/integrationtest/infrastructure/test.go b/cmd/soroban-rpc/internal/integrationtest/infrastructure/test.go index 25e0fa4b..7a7db2f3 100644 --- a/cmd/soroban-rpc/internal/integrationtest/infrastructure/test.go +++ b/cmd/soroban-rpc/internal/integrationtest/infrastructure/test.go @@ -140,7 +140,7 @@ func NewTest(t *testing.T, cfg *TestConfig) *Test { i.sqlitePath = path.Join(i.t.TempDir(), "soroban_rpc.sqlite") } - if parallel { + if parallel && false { t.Parallel() }