File tree Expand file tree Collapse file tree 1 file changed +2
-27
lines changed
integration_tests/deprecated_tests Expand file tree Collapse file tree 1 file changed +2
-27
lines changed Original file line number Diff line number Diff line change @@ -103,33 +103,8 @@ def filter_anomaly_tests_for_clickhouse(
103103 test_types : List [str ], target : str
104104) -> List [str ]:
105105 if target == "clickhouse" :
106- # Tests not supported on ClickHouse
107- unsupported_test_types = {
108- # Anomaly tests (not supported in ClickHouse)
109- "seasonal_volume" ,
110- "table" ,
111- "column" ,
112- "directional_anomalies" ,
113- "backfill_days" ,
114- "dimension" ,
115- "no_timestamp" ,
116- # Schema and error tests (function compatibility issues)
117- "schema" ,
118- "error_test" ,
119- "error_model" ,
120- "error_snapshot" ,
121- # Models with compatibility issues
122- "create_table" ,
123- "non_dbt_models" ,
124- # Tests requiring specific database setup
125- "config_levels" ,
126- }
127- # Keep basic tests that should work with ClickHouse
128- return [
129- test_type
130- for test_type in test_types
131- if test_type not in unsupported_test_types
132- ]
106+ # For ClickHouse, we'll only run basic artifacts tests
107+ return ["artifacts" ] if "artifacts" in test_types else []
133108 return test_types
134109
135110
You can’t perform that action at this time.
0 commit comments