Skip to content

Commit

Permalink
Increase cluster creation test timeout (#617)
Browse files Browse the repository at this point in the history
## Changes
Increase test timeout for cluster creation from 10m to 20m, as the time
taken in GCP is close to 10 minutes.

## Tests
<!-- 
How is this tested? Please see the checklist below and also describe any
other relevant tests
-->

- [ ] `make test` run locally
- [ ] `make fmt` applied
- [ ] relevant integration tests applied
  • Loading branch information
mgyucht authored Apr 17, 2024
1 parent bf33c14 commit c2367af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_clusters.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}')


Expand Down

0 comments on commit c2367af

Please sign in to comment.