From 69bece358749d761b95383e9d8ec86c7f5253c77 Mon Sep 17 00:00:00 2001 From: Jerry Shao Date: Fri, 27 Sep 2024 21:55:37 +0800 Subject: [PATCH] [MINOR] improve(CI): Increase the Python timeout minutes to 45 minutes (#5037) ### What changes were proposed in this pull request? Change the Python CI time to 45 minutes to reduce the chances of CI failure. ### Why are the changes needed? Current Python CI running time will hit the timeout and fail the CI, so increasing CI timeout to mitigate the failures. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? CI. --- .github/workflows/python-integration-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-integration-test.yml b/.github/workflows/python-integration-test.yml index 4e9f96bc690..91be2bfbd50 100644 --- a/.github/workflows/python-integration-test.yml +++ b/.github/workflows/python-integration-test.yml @@ -40,7 +40,7 @@ jobs: needs: changes if: needs.changes.outputs.source_changes == 'true' runs-on: ubuntu-latest - timeout-minutes: 30 + timeout-minutes: 45 strategy: matrix: architecture: [linux/amd64] @@ -83,4 +83,4 @@ jobs: distribution/package/logs/gravitino-server.out distribution/package/logs/gravitino-server.log catalogs/**/*.log - catalogs/**/*.tar \ No newline at end of file + catalogs/**/*.tar