Skip to content

Commit

Permalink
CI: Increase parallel test timeout for Helm Chart tests (#18993)
Browse files Browse the repository at this point in the history
The helm tests are now regularly taking right around 35 minutes on public
GitHub Actions workers, so we will increase the timeout.
  • Loading branch information
jedcunningham authored Oct 15, 2021
1 parent 406b38b commit 3545a2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ci/testing/ci_run_airflow_testing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ function run_test_types_in_parallel() {
mkdir -p "${PARALLEL_MONITORED_DIR}/${SEMAPHORE_NAME}/${TEST_TYPE}"
export JOB_LOG="${PARALLEL_MONITORED_DIR}/${SEMAPHORE_NAME}/${TEST_TYPE}/stdout"
export PARALLEL_JOB_STATUS="${PARALLEL_MONITORED_DIR}/${SEMAPHORE_NAME}/${TEST_TYPE}/status"
# Each test job will get SIGTERM followed by SIGTERM 200ms later and SIGKILL 200ms later after 35 mins
# Each test job will get SIGTERM followed by SIGTERM 200ms later and SIGKILL 200ms later after 45 mins
# shellcheck disable=SC2086
parallel --ungroup --bg --semaphore --semaphorename "${SEMAPHORE_NAME}" \
--jobs "${MAX_PARALLEL_TEST_JOBS}" --timeout 2100 \
--jobs "${MAX_PARALLEL_TEST_JOBS}" --timeout 2700 \
"$( dirname "${BASH_SOURCE[0]}" )/ci_run_single_airflow_test_in_docker.sh" "${@}" >"${JOB_LOG}" 2>&1
done
parallel --semaphore --semaphorename "${SEMAPHORE_NAME}" --wait
Expand Down

0 comments on commit 3545a2c

Please sign in to comment.