Skip to content

Commit fa6d20a

Browse files
committed
added additional unsupported tests
1 parent 85ab989 commit fa6d20a

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

integration_tests/deprecated_tests/run_e2e_tests.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)