Signature for new task

This commit is contained in:
Pablo Martin 2023-03-29 17:18:41 +02:00
parent 814a376e02
commit 5b97864e8d

View file

@ -60,6 +60,15 @@ def run_data_test_on_mysql(
return results
@task()
def run_data_test_on_trino(
name: str,
trino_credentials: dict,
query: str,
expectation_configurations: List[ExpectationConfiguration],
great_expectations_s3_bucket: str = DEFAULT_GREAT_EXPECTATIONS_S3_BUCKET,
) -> dict:
raise NotImplementedError("WIP")
def _create_in_memory_data_context_for_mysql(
mysql_credentials: dict,