Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eyaltrabelsi/77c125550f98c092ff87029238842f59 to your computer and use it in GitHub Desktop.
Save eyaltrabelsi/77c125550f98c092ff87029238842f59 to your computer and use it in GitHub Desktop.
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