DEV: Bump CAPYBARA_DEFAULT_MAX_WAIT_TIME to 10 seconds on CI (#21711)

We're running on pretty crappy hardware on Github's CI and this has an
impact on the stability of our system tests on CI. Therefore, we are
bumping `CABPYARA_DEFAULT_MAX_WAIT_TIME` to 10 seconds to account for
the less than ideal hardware we're running the system tests on.

This change trades off speed for stability but speed is already bad on
CI so stability is more important for our case.
This commit is contained in:
Alan Guo Xiang Tan 2023-05-25 10:25:08 +09:00 committed by GitHub
parent 5cfe323445
commit 038318bffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ jobs:
PGUSER: discourse
PGPASSWORD: discourse
USES_PARALLEL_DATABASES: ${{ matrix.build_type == 'backend' || matrix.build_type == 'system' }}
CABPYARA_DEFAULT_MAX_WAIT_TIME: 4
CABPYARA_DEFAULT_MAX_WAIT_TIME: 10
strategy:
fail-fast: false