Can you pass a date as env variable to the checkpoint yml file like this:
batches:
- batch_kwargs:
query: "SELECT * FROM table
WHERE start = '$validation_date'"
query_parameters:
validation_date: ${VALIDATION_DATE}
datasource: athena
data_asset_name:
expectation_suite_names: # one or more suites may validate against a single batch
- athena_table
“When I run checkpoint it does not evaluate to my local env variable, although I can do echo $VALIDATION_DATE on my terminal and see my date correctly.
How do you pass query parameter to your checkpoint yml file?”