I am trying to find out how to specify an evaluation parameter when I create an ExpectationConfiguration object.
To Reproduce Steps to reproduce the behavior:
I have followed instructions as to how to create expectations using ExpectationConfiguration:
I define the ExpectationConfiguration as follows:
expectation_configuration_2 = ExpectationConfiguration(
expectation_type="expect_column_distinct_values_to_be_in_set",
kwargs = {
"column" : "gameid",
"value_set" : {"$PARAMETER" : "runtime_values"}
},
meta={
"notes": {
"format": "markdown",
"content": "Ensures that certain values of gameid are included. **Markdown** `Supported`"
}
}
)
suite.add_expectation(expectation_configuration=expectation_configuration_2)
but I get this error:
great_expectations.exceptions.exceptions.EvaluationParameterError: No value found for $PARAMETER runtime_values