databricks-demos / dbdemos

Demos to implement your Databricks Lakehouse
Other
255 stars 80 forks source link

MLOps end-to-end not checking for test failures correctly #54

Open db-caioishizaka opened 11 months ago

db-caioishizaka commented 11 months ago

In Notebook 5, it tries to check for failures in the tests by doing if '0' in results or 'fail' in results: While it should check for the values inside the tags, as in if '0' in results.tags.values() or 'fail' in results.tags.values():