From 34d5cd2bd851628d3532321fc7814eb8f3992514 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Wed, 16 Aug 2023 19:55:46 -0700 Subject: [PATCH] Increase pytests workflow timeout duration to reduce intermittent failures The test workflow fails regularly with an OperationCancelled error. This is an intermittent failure that gets resolved on running the failed workflows a few times. --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5b0e1f6e..d8aa9be8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,6 +35,8 @@ jobs: - '3.11' steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v4 @@ -54,3 +56,4 @@ jobs: - name: 🧪 Test Application run: pytest + timeout-minutes: 10