From f64f1b6b6e86db5cb39ee39d9ad21bbe6c0908b2 Mon Sep 17 00:00:00 2001 From: Nikolay Mitrofanov Date: Fri, 6 Feb 2026 17:45:10 +0300 Subject: [PATCH] increase workflow test timeout Signed-off-by: Nikolay Mitrofanov --- .github/workflows/check_pull_request.yml | 4 ++-- hack/run_tests.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_pull_request.yml b/.github/workflows/check_pull_request.yml index 88c93ad..d911a6d 100644 --- a/.github/workflows/check_pull_request.yml +++ b/.github/workflows/check_pull_request.yml @@ -24,12 +24,12 @@ jobs: run_tests: name: "Run unit tests" runs-on: ubuntu-latest - timeout-minutes: 35 + timeout-minutes: 45 steps: - &checkout_step name: Checkout - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} diff --git a/hack/run_tests.sh b/hack/run_tests.sh index 8a9e857..b948774 100755 --- a/hack/run_tests.sh +++ b/hack/run_tests.sh @@ -81,7 +81,7 @@ function run_tests_in_dir() { echo "Run tests in $full_pkg_path" cd "$full_pkg_path" - if ! echo "test -timeout 30m -v -p 1 $run_tests" | xargs go; then + if ! echo "test -timeout 35m -v -p 1 $run_tests" | xargs go; then all_failed_tests="$(echo -e "${all_failed_tests}\nTests in ${p} failed")" fi done <<< "$packages"