From ded8db124fcdc62192af44fdeeebe818190b4a39 Mon Sep 17 00:00:00 2001 From: Alfonso Acosta Date: Mon, 8 Jul 2024 19:22:03 +0200 Subject: [PATCH] Revert "Add verbosity again to see what's wrong" This reverts commit 0be1cd6e01fbedcab3fcd48c4634c2ff0f3debff. --- .github/workflows/soroban-rpc.yml | 2 +- cmd/soroban-rpc/internal/integrationtest/infrastructure/test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/soroban-rpc.yml b/.github/workflows/soroban-rpc.yml index 79fbf76d..7edfe2e3 100644 --- a/.github/workflows/soroban-rpc.yml +++ b/.github/workflows/soroban-rpc.yml @@ -168,4 +168,4 @@ jobs: - name: Run Soroban RPC Integration Tests run: | - go test -race -v -timeout 20m ./cmd/soroban-rpc/internal/integrationtest/... + go test -race -timeout 20m ./cmd/soroban-rpc/internal/integrationtest/... diff --git a/cmd/soroban-rpc/internal/integrationtest/infrastructure/test.go b/cmd/soroban-rpc/internal/integrationtest/infrastructure/test.go index 7a7db2f3..25e0fa4b 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 && false { + if parallel { t.Parallel() }