From ef58f9087a4a1eb8ada9618c64a4853eedcbaae8 Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Tue, 17 Jan 2023 15:15:00 +0100 Subject: [PATCH] CI: Increase timeout for tests. --- .github/workflows/tarball.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index ffab7a0..cc71eec 100644 --- a/.github/workflows/tarball.yml +++ b/.github/workflows/tarball.yml @@ -107,4 +107,4 @@ jobs: env: GOPROXY: off run: | - make -C tmp test + make -C tmp test TIMEOUT=120s diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 740c150..d6d35af 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -67,11 +67,11 @@ jobs: - name: Run tests run: | - make test + make test TIMEOUT=120s - name: Generate coverage report run: | - make cover + make cover TIMEOUT=120s echo "GOROOT=$(go env GOROOT)" >> $GITHUB_ENV - name: Convert coverage to lcov