Hi there,
I am trying to create a workflow with an in-memory dataframe with pyspark.
After rendering the datadocs with an action, the HTML elements don’t show the red and green checks for passed or invalid expectations.
Where would I need to look to fix this ?
I am on 1.1 and create the datadocs in a local file context like
# Define a Data Docs site configuration dictionary
base_directory = "uncommitted/data_docs/local_site/" # this is the default path (relative to the root folder of the Data Context) but can be changed as required
site_config = {
"class_name": "SiteBuilder",
"site_index_builder": {"class_name": "DefaultSiteIndexBuilder"},
"store_backend": {
"class_name": "TupleFilesystemStoreBackend",
"base_directory": base_directory,
},
}
# Add the Data Docs configuration to the Data Context
site_name = "dtc_datadocs_site"
context.add_data_docs_site(site_name=site_name, site_config=site_config)
context.build_data_docs(site_names=[site_name])