From b158244acb2b451786428c569fa60af753783c69 Mon Sep 17 00:00:00 2001 From: Arnav Gupta Date: Sun, 11 Feb 2024 09:07:28 +0800 Subject: [PATCH] test: increase timeout to let the tests end Signed-off-by: Arnav Gupta --- .github/workflows/build_test_release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_test_release.yaml b/.github/workflows/build_test_release.yaml index e7a0d6c..d126605 100644 --- a/.github/workflows/build_test_release.yaml +++ b/.github/workflows/build_test_release.yaml @@ -54,7 +54,7 @@ jobs: go get ./... - name: Test - run: go test -timeout 2s -coverprofile=coverage.txt -race -covermode=atomic -v -coverpkg=./src/... ./tests/... ./src/... + run: go test -timeout 5s -coverprofile=coverage.txt -race -covermode=atomic -v -coverpkg=./src/... ./tests/... ./src/... - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3