dataops-testgen icon indicating copy to clipboard operation
dataops-testgen copied to clipboard

DataOps Data Quality TestGen is part of DataKitchen's Open Source Data Observability. DataOps TestGen delivers simple, fast data quality test generation and execution by data profiling,  new dataset...

Results 4 dataops-testgen issues
Sort by recently updated
recently updated
newest added

When adding the URL to my cluster, "\.\.azure.snowflakecomputing.com", to the Host field on the Connection page, it is stripping out the azure bit in the URL suffix field to "\.\/\/"...

When using the app on Dark Mode, the details section that renders below a table for the selected row shows the field values as a white box. If I select...

For the 'Similar Values Match When Standardized' Hygiene test, when it hits a column that is an email field, it is recommending not great options. [email protected] -> recommendation ->FAKE@GMAILCOM The...

https://github.com/DataKitchen/dataops-testgen/blob/418ec3a21ed3c7653e8859c97e6a06a37140ed0a/testgen/ui/views/data_catalog.py#L279 Current implementation: `data = [row.to_dict() for _, row in df.iterrows()]` Recommended replacement: `data = df.apply(lambda row: row.to_dict(), axis=1).tolist()` Using iterrows() introduces overhead because each row is returned as a...