Created
July 5, 2024 17:53
-
-
Save eyaltrabelsi/77c125550f98c092ff87029238842f59 to your computer and use it in GitHub Desktop.
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
def test_staging_is_not_stale(): | |
glue = boto3.client('glue') | |
stg_schema = glue.get_table(DatabaseName=STAGING_ATHENA_DATABASE,Name=ATHENA_TABLE)['Table']['StorageDescriptor']['Columns'] | |
prod_schema = glue.get_table(DatabaseName=PROD_ATHENA_DATABASE, Name=ATHENA_TABLE)['Table']['StorageDescriptor']['Columns'] | |
assert stg_schema == prod_schema |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment