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.
pull/238/head
Andreas Karlsson 2 months ago committed by Artem Gavrilov
parent 0ee3f3a341
commit f939a24a08
  1. 4
      .github/workflows/coverage.yml
  2. 2
      .github/workflows/sanitizers.yml

@ -10,7 +10,9 @@ on:
- contrib/pg_tde/documentation/** - contrib/pg_tde/documentation/**
env: env:
PGCTLTIMEOUT: 120 # Avoid failures on slow recovery # Avoid failures on slow recovery
PGCTLTIMEOUT: 120
PG_TEST_TIMEOUT_DEFAULT: 300
jobs: jobs:
collect: collect:

@ -17,7 +17,9 @@ env:
LSAN_OPTIONS: log_path=${{ github.workspace }}/sanitize.log print_suppressions=0 suppressions=${{ github.workspace }}/ci_scripts/suppressions/lsan.supp 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 ASAN_SYMBOLIZER_PATH: /usr/bin/llvm-symbolizer-14
EXTRA_REGRESS_OPTS: "--temp-config=${{ github.workspace }}/test_postgresql.conf" EXTRA_REGRESS_OPTS: "--temp-config=${{ github.workspace }}/test_postgresql.conf"
# Avoid failures on slow recovery
PGCTLTIMEOUT: 120 PGCTLTIMEOUT: 120
PG_TEST_TIMEOUT_DEFAULT: 300
jobs: jobs:
run: run:

Loading…
Cancel
Save