Skip to content

Commit

Permalink
fix: add retries to functional tests (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicor88 authored Nov 9, 2023
1 parent 84381e7 commit 673b9a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def dbt_profile_target():
"region_name": os.getenv("DBT_TEST_ATHENA_REGION_NAME"),
"threads": int(os.getenv("DBT_TEST_ATHENA_THREADS", "1")),
"poll_interval": float(os.getenv("DBT_TEST_ATHENA_POLL_INTERVAL", "1.0")),
"num_retries": 0,
"num_retries": 1,
"work_group": os.getenv("DBT_TEST_ATHENA_WORK_GROUP"),
"aws_profile_name": os.getenv("DBT_TEST_ATHENA_AWS_PROFILE_NAME") or None,
}
Expand Down

0 comments on commit 673b9a7

Please sign in to comment.