Skip to content

Commit dbd7733

Browse files
committed
removed more tests for clickhouse
1 parent 4350efa commit dbd7733

File tree

1 file changed

+2
-27
lines changed

1 file changed

+2
-27
lines changed

integration_tests/deprecated_tests/run_e2e_tests.py

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

0 commit comments

Comments
 (0)