Hi Guys, I’ve implemented GX using a TupleAzureStoreBackend. This is the yml piece:
stores:
expectations_store:
class_name: ExpectationsStore
store_backend:
class_name: TupleAzureBlobStoreBackend
container: dls
prefix: great_expectations/expectations
After running a checkpoint I manually need to run: self.data_context.build_data_docs(), even though I’ve defined an action:
return self.data_context.checkpoints.add(
Checkpoint(
name=self.checkpoint_name,
validation_definitions=validation_definitions,
actions=[
UpdateDataDocsAction(name=“update_data_docs”),
],
result_format={“result_format”: “COMPLETE”},
)
)
On windows I get the following error (it’s working on linux): azure.core.exceptions.ResourceNotFoundError: The specified blob does not exist.
‘https://storageaccount.blob.core.windows.net/dls/great_expectations/expectations\great_expectations/expectations/unittest/error_action_continue.json’
As you can see it’s duplicating great_expectations/expectations on windows. Any suggestions? Thanks