@@ -30,6 +30,7 @@ def test_anomalyless_column_anomalies(test_id: str, dbt_project: DbtProject):
3030 assert test_result ["status" ] == "pass"
3131
3232
33+ # Anomalies currently not supported on ClickHouse
3334@pytest .mark .skip_targets (["clickhouse" ])
3435def test_anomalyless_no_timestamp_column_anomalies (
3536 test_id : str , dbt_project : DbtProject
@@ -51,6 +52,7 @@ def test_anomalyless_no_timestamp_column_anomalies(
5152 assert test_result ["status" ] == "pass"
5253
5354
55+ # Anomalies currently not supported on ClickHouse
5456@pytest .mark .skip_targets (["clickhouse" ])
5557def test_anomalous_column_anomalies (test_id : str , dbt_project : DbtProject ):
5658 utc_today = datetime .utcnow ().date ()
@@ -75,6 +77,7 @@ def test_anomalous_column_anomalies(test_id: str, dbt_project: DbtProject):
7577 assert test_result ["status" ] == "fail"
7678
7779
80+ # Anomalies currently not supported on ClickHouse
7881@pytest .mark .skip_targets (["clickhouse" ])
7982def test_column_anomalies_with_where_parameter (test_id : str , dbt_project : DbtProject ):
8083 utc_today = datetime .utcnow ().date ()
@@ -176,6 +179,7 @@ def test_column_anomalies_with_timestamp_as_sql_expression(
176179 drop_failure_percent_threshold = 5 ,
177180 metric_value = 1 ,
178181)
182+ # Anomalies currently not supported on ClickHouse
179183@pytest .mark .skip_targets (["clickhouse" ])
180184def test_volume_anomaly_static_data_drop (
181185 test_id : str ,
@@ -241,6 +245,7 @@ def test_anomalyless_column_anomalies_group(test_id: str, dbt_project: DbtProjec
241245 assert test_result ["status" ] == "pass"
242246
243247
248+ # Anomalies currently not supported on ClickHouse
244249@pytest .mark .skip_targets (["clickhouse" ])
245250def test_column_anomalies_group_by (test_id : str , dbt_project : DbtProject ):
246251 utc_today = datetime .utcnow ().date ()
@@ -295,6 +300,7 @@ def test_column_anomalies_group_by(test_id: str, dbt_project: DbtProject):
295300 assert test_result ["failures" ] == 2
296301
297302
303+ # Anomalies currently not supported on ClickHouse
298304@pytest .mark .skip_targets (["clickhouse" ])
299305def test_anomalyless_column_anomalies_group_by_none_dimension (
300306 test_id : str , dbt_project : DbtProject
@@ -340,6 +346,7 @@ def test_anomalyless_column_anomalies_group_by_none_dimension(
340346 assert test_result ["failures" ] == 2
341347
342348
349+ # Anomalies currently not supported on ClickHouse
343350@pytest .mark .skip_targets (["clickhouse" ])
344351def test_anomalyless_column_anomalies_group_by_multi (
345352 test_id : str , dbt_project : DbtProject
@@ -392,6 +399,7 @@ def test_anomalyless_column_anomalies_group_by_multi(
392399 assert test_result ["failures" ] == 3
393400
394401
402+ # Anomalies currently not supported on ClickHouse
395403@pytest .mark .skip_targets (["clickhouse" ])
396404def test_anomalyless_column_anomalies_group_by_description (
397405 test_id : str , dbt_project : DbtProject
@@ -427,6 +435,7 @@ def test_anomalyless_column_anomalies_group_by_description(
427435 assert "not enough data" not in test_result ["test_results_description" ].lower ()
428436
429437
438+ # Anomalies currently not supported on ClickHouse
430439@pytest .mark .skip_targets (["clickhouse" ])
431440def test_anomalous_boolean_column_anomalies (test_id : str , dbt_project : DbtProject ):
432441 utc_today = datetime .utcnow ().date ()
0 commit comments