This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: add athena integration tests (#503)
* tests: add athena integration tests basic configs * offer athena testing in github action * add missing duckdb with TODO for later fix * add secrets and envirpnment variables configuration * proper profile config * aws credentials in github action * no database and schema being set for duckdb for now * special case for installing dbt-athena-adapter package for athena adapter
- Loading branch information
Showing
4 changed files
with
65 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
config: | ||
send_anonymous_usage_stats: False | ||
|
||
fal_test: | ||
target: integration_tests | ||
outputs: | ||
integration_tests: | ||
type: athena | ||
s3_staging_dir: "{{ env_var('ATHENA_S3_STAGING_DIR') }}" | ||
region_name: us-east-1 | ||
database: "{{ env_var('ATHENA_DATABASE') }}" | ||
schema: "{{ env_var('ATHENA_SCHEMA') }}" | ||
num_retries: 0 | ||
# work_group: "{{ env_var('ATHENA_WORK_GROUP') }}" | ||
# aws_profile_name: "{{ env_var('ATHENA_PROFILE') }}" |