Skip to content

Commit

Permalink
Merge branch 'main' into require-alias-false
Browse files Browse the repository at this point in the history
  • Loading branch information
Dewwi authored Oct 29, 2024
2 parents a9994fc + 3e6d043 commit 90fa966
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Pull request checks"

on:
pull_request:
pull_request_target:
types: [opened, reopened, synchronize]

# only run this once per PR at a time
Expand Down
4 changes: 2 additions & 2 deletions dbt-athena/tests/functional/adapter/test_retries_iceberg.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ class TestIcebergRetriesEnabled:
@pytest.fixture(scope="class")
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 * 2
# we set iceberg retries to a high number to ensure that the test will pass
profile["num_iceberg_retries"] = PARALLELISM * 5
return profile

@pytest.fixture(scope="class")
Expand Down

0 comments on commit 90fa966

Please sign in to comment.