From 4d925f73ae22e825144787317199ae3e512fc5a6 Mon Sep 17 00:00:00 2001 From: Nicholas Felt Date: Thu, 9 Nov 2023 13:22:05 -0800 Subject: [PATCH] ci: Increase timeout when installing tm_devices from pypi servers to avoid issues caused by long wheel build times for packages that tm_devices depends on (such as zeroconf). (#98) Signed-off-by: qthompso --- .github/workflows/package-release.yml | 2 +- .github/workflows/package-testpypi.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package-release.yml b/.github/workflows/package-release.yml index 8420775f3..67036d491 100644 --- a/.github/workflows/package-release.yml +++ b/.github/workflows/package-release.yml @@ -150,7 +150,7 @@ jobs: # A retry is used to allow for some downtime before the package is installable uses: nick-fields/retry@v2 with: - timeout_minutes: 2 + timeout_minutes: 10 max_attempts: 5 retry_wait_seconds: 30 warning_on_retry: false diff --git a/.github/workflows/package-testpypi.yml b/.github/workflows/package-testpypi.yml index 1f147950b..e579c5d40 100644 --- a/.github/workflows/package-testpypi.yml +++ b/.github/workflows/package-testpypi.yml @@ -68,7 +68,7 @@ jobs: # A retry is used to allow for some downtime before the package is installable uses: nick-fields/retry@v2 with: - timeout_minutes: 2 + timeout_minutes: 10 max_attempts: 5 retry_wait_seconds: 30 warning_on_retry: false