From ce8f0f4e6e506f30407bf1a1f8f63d5848c2b375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Miguel=20Benito=20Calzada?= Date: Tue, 8 Nov 2022 09:01:04 +0100 Subject: [PATCH] Increase timeout for local_e2e_tests(opeartor) to avoid flaky tests (#5613) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit increases the timeout for the `operator` group of the `local_e2e_tests` job of the `kubeapps-general.yml` workflow. Signed-off-by: Jesús Benito Calzada --- .github/workflows/kubeapps-general.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/kubeapps-general.yaml b/.github/workflows/kubeapps-general.yaml index 134fee055a3..e6911260f5c 100644 --- a/.github/workflows/kubeapps-general.yaml +++ b/.github/workflows/kubeapps-general.yaml @@ -430,13 +430,21 @@ jobs: - multicluster-nokubeapps - carvel - operator + timeout_minutes: + - 4 + include: # Override the default timeout for the operators group, to avoid flaky tests + - tests_group: operator + timeout_minutes: 6 + exclude: + - tests_group: operator + timeout_minutes: 4 env: DEFAULT_DEX_IP: "172.18.0.2" IMG_PREFIX: ${{ needs.setup.outputs.img_prefix }} TESTS_GROUP: ${{ matrix.tests_group }} TEST_OPERATORS: "1" TEST_UPGRADE: "1" - TEST_TIMEOUT_MINUTES: 4 # Timeout minutes for each test + TEST_TIMEOUT_MINUTES: ${{ matrix.timeout_minutes }} # Timeout minutes for each test USE_MULTICLUSTER_OIDC_ENV: "true" steps: - uses: actions/checkout@v3