From eaadf9be9cad705e571de78d05f41de670b9059f Mon Sep 17 00:00:00 2001 From: nicor88 <6278547+nicor88@users.noreply.github.com> Date: Thu, 27 Jun 2024 16:16:00 +0200 Subject: [PATCH] increase parallelism --- tests/functional/adapter/test_retries_iceberg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/adapter/test_retries_iceberg.py b/tests/functional/adapter/test_retries_iceberg.py index c9653bf4..9bfb7821 100644 --- a/tests/functional/adapter/test_retries_iceberg.py +++ b/tests/functional/adapter/test_retries_iceberg.py @@ -102,7 +102,7 @@ class TestIcebergRetriesEnabled: def dbt_profile_target(self): profile = copy.deepcopy(base_dbt_profile) # we set the iceberg retries to the same number of parallelism to make sure that the retries are working - profile["num_iceberg_retries"] = PARALLELISM + profile["num_iceberg_retries"] = PARALLELISM * 2 return profile @pytest.fixture(scope="class")