From 6b06aa8028d8dd81f8b3f46676d7aed3b5523818 Mon Sep 17 00:00:00 2001 From: Jonas Maison Date: Thu, 28 Sep 2023 14:19:01 +0200 Subject: [PATCH] ci: increase e2e_tests.yml timeout --- .github/workflows/e2e_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e_tests.yml b/.github/workflows/e2e_tests.yml index 42d6feac7..07183363d 100644 --- a/.github/workflows/e2e_tests.yml +++ b/.github/workflows/e2e_tests.yml @@ -254,7 +254,7 @@ jobs: - name: E2E tests id: e2e if: github.event.inputs.runE2ETests != 'false' - timeout-minutes: 30 + timeout-minutes: 60 run: pytest -ra -sv --color yes --code-highlight yes --durations=0 -vv --ignore tests/e2e/test_notebooks.py tests/e2e env: KILI_API_CLOUD_VISION: ${{ secrets.KILI_API_CLOUD_VISION }} @@ -268,7 +268,7 @@ jobs: # we don't run notebook tests on push to main # we run regardless of the outcome of the e2e tests if: ${{ !cancelled() }} && github.event.inputs.runNotebookTests != 'false' && (github.event_name != 'push' || github.ref_name != 'main') && (steps.e2e.outcome != 'cancelled') - timeout-minutes: 45 + timeout-minutes: 60 run: pytest -ra -sv --color yes --code-highlight yes --durations=0 -vv tests/e2e/test_notebooks.py env: KILI_API_CLOUD_VISION: ${{ secrets.KILI_API_CLOUD_VISION }}