File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
integration_tests/deprecated_tests Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -103,18 +103,24 @@ def filter_anomaly_tests_for_clickhouse(
103103 test_types : List [str ], target : str
104104) -> List [str ]:
105105 if target == "clickhouse" :
106- # Anomaly tests are not supported on ClickHouse
107- anomaly_test_types = {
106+ # Tests not supported on ClickHouse
107+ unsupported_test_types = {
108108 "seasonal_volume" ,
109109 "table" ,
110110 "column" ,
111111 "directional_anomalies" ,
112112 "backfill_days" ,
113113 "dimension" ,
114114 "no_timestamp" ,
115+ "schema" , # Schema tests have different behavior in ClickHouse
116+ "error_test" , # Contains function not supported
117+ "error_model" , # Contains function not supported
118+ "error_snapshot" , # Contains function not supported
115119 }
116120 return [
117- test_type for test_type in test_types if test_type not in anomaly_test_types
121+ test_type
122+ for test_type in test_types
123+ if test_type not in unsupported_test_types
118124 ]
119125 return test_types
120126
You can’t perform that action at this time.
0 commit comments