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..."