From a97d2ea74ccacba3c33d9d899577bbb005b8d633 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 28 Oct 2025 07:55:50 +0100 Subject: [PATCH] Increase test timeout --- .github/workflows/ci.yml | 3 --- Makefile | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d648dc0..8a46635 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,9 +19,6 @@ jobs: go-version: '1.23' cache: true - - name: Install gotestsum - run: go install gotest.tools/gotestsum@latest - - name: Install gomock (for code generation) run: go install go.uber.org/mock/mockgen@latest diff --git a/Makefile b/Makefile index 734995c..0836c7e 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ test: test-integration: @echo "Running tests..." - CGO_ENABLED=1 CGO_CFLAGS="$(CGO_CFLAGS)" CGO_LDFLAGS="$(CGO_LDFLAGS)" go test -v -tags=codex_integration ./communities -run Integration -timeout 15s + CGO_ENABLED=1 CGO_CFLAGS="$(CGO_CFLAGS)" CGO_LDFLAGS="$(CGO_LDFLAGS)" go test -v -tags=codex_integration ./communities -run Integration -timeout 60s coverage: @echo "Running unit tests with coverage..."