From f939a24a08d400407278a9b783503b31ea73e912 Mon Sep 17 00:00:00 2001 From: Andreas Karlsson Date: Mon, 28 Jul 2025 11:38:23 +0200 Subject: [PATCH] Increase the test timeout from 180 to 300 seconds We get what looks a lot like timeouts when we try to run certain pg_tde TAP tests with code coverage enabled. --- .github/workflows/coverage.yml | 4 +++- .github/workflows/sanitizers.yml | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 70d227e18be..f22e97afc0b 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -10,7 +10,9 @@ on: - contrib/pg_tde/documentation/** env: - PGCTLTIMEOUT: 120 # Avoid failures on slow recovery + # Avoid failures on slow recovery + PGCTLTIMEOUT: 120 + PG_TEST_TIMEOUT_DEFAULT: 300 jobs: collect: diff --git a/.github/workflows/sanitizers.yml b/.github/workflows/sanitizers.yml index b1196d41f4f..462de6fa0fb 100644 --- a/.github/workflows/sanitizers.yml +++ b/.github/workflows/sanitizers.yml @@ -17,7 +17,9 @@ env: LSAN_OPTIONS: log_path=${{ github.workspace }}/sanitize.log print_suppressions=0 suppressions=${{ github.workspace }}/ci_scripts/suppressions/lsan.supp ASAN_SYMBOLIZER_PATH: /usr/bin/llvm-symbolizer-14 EXTRA_REGRESS_OPTS: "--temp-config=${{ github.workspace }}/test_postgresql.conf" + # Avoid failures on slow recovery PGCTLTIMEOUT: 120 + PG_TEST_TIMEOUT_DEFAULT: 300 jobs: run: