From c2367af3bf4d5d3636aab8ea8672e48d5539d36b Mon Sep 17 00:00:00 2001 From: Miles Yucht Date: Wed, 17 Apr 2024 09:40:45 +0200 Subject: [PATCH] Increase cluster creation test timeout (#617) ## Changes Increase test timeout for cluster creation from 10m to 20m, as the time taken in GCP is close to 10 minutes. ## Tests - [ ] `make test` run locally - [ ] `make fmt` applied - [ ] relevant integration tests applied --- tests/integration/test_clusters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_clusters.py b/tests/integration/test_clusters.py index 63cb5642..93098994 100644 --- a/tests/integration/test_clusters.py +++ b/tests/integration/test_clusters.py @@ -35,7 +35,7 @@ def test_create_cluster(w, env_or_skip, random): spark_version=w.clusters.select_spark_version(long_term_support=True), instance_pool_id=env_or_skip('TEST_INSTANCE_POOL_ID'), autotermination_minutes=10, - num_workers=1).result(timeout=timedelta(minutes=10)) + num_workers=1).result(timeout=timedelta(minutes=20)) logging.info(f'Created: {info}')