Skip to content

Commit 5d65bab

Browse files
Merge pull request #1934 from elementary-data/ignore-monitor-failure-clickhouse
ignore monitor failure on clickhouse
2 parents b716d0f + 71ab728 commit 5d65bab

File tree

3 files changed

+6
-25
lines changed

3 files changed

+6
-25
lines changed

.github/workflows/test-all-warehouses.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,7 @@ jobs:
2727
matrix:
2828
dbt-version: ${{ inputs.dbt-version && fromJSON(format('["{0}"]', inputs.dbt-version)) || fromJSON('["1.8.0", null]') }}
2929
warehouse-type:
30-
[
31-
postgres,
32-
snowflake,
33-
bigquery,
34-
redshift,
35-
databricks_catalog,
36-
athena,
37-
clickhouse,
38-
]
30+
[postgres, snowflake, bigquery, redshift, databricks_catalog, athena]
3931
uses: ./.github/workflows/test-warehouse.yml
4032
with:
4133
warehouse-type: ${{ matrix.warehouse-type }}

.github/workflows/test-release.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,7 @@ jobs:
4747
fail-fast: false
4848
matrix:
4949
warehouse-type:
50-
[
51-
postgres,
52-
snowflake,
53-
bigquery,
54-
redshift,
55-
databricks_catalog,
56-
athena,
57-
clickhouse,
58-
]
50+
[postgres, snowflake, bigquery, redshift, databricks_catalog, athena]
5951
needs: get-latest-release-tags
6052
uses: ./.github/workflows/test-warehouse.yml
6153
with:

.github/workflows/test-warehouse.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ on:
1414
- databricks_catalog
1515
- spark
1616
- athena
17-
- clickhouse
1817
elementary-ref:
1918
type: string
2019
required: false
@@ -105,10 +104,10 @@ jobs:
105104
working-directory: ${{ env.DBT_PKG_INTEG_TESTS_DIR }}
106105
run: docker compose up -d postgres
107106

108-
- name: Start Clickhouse
109-
if: inputs.warehouse-type == 'clickhouse'
110-
working-directory: ${{ env.DBT_PKG_INTEG_TESTS_DIR }}
111-
run: docker compose up -d clickhouse
107+
# - name: Start Clickhouse
108+
# if: inputs.warehouse-type == 'clickhouse'
109+
# working-directory: ${{ env.DBT_PKG_INTEG_TESTS_DIR }}
110+
# run: docker compose up -d clickhouse
112111

113112
- name: Setup Python
114113
uses: actions/setup-python@v4
@@ -156,8 +155,6 @@ jobs:
156155
157156
- name: Run dbt package integration tests
158157
if: github.event_name != 'workflow_dispatch' || inputs.should-run-tests
159-
# remove this once clickhouse supports anomaly detection
160-
continue-on-error: ${{ inputs.warehouse-type == 'clickhouse' }}
161158
working-directory: ${{ env.DBT_PKG_INTEG_TESTS_DIR }}
162159
run: |
163160
dbt deps

0 commit comments

Comments
 (0)