From 605a6097ab93af5bd4c2ad3363afd43077e439f3 Mon Sep 17 00:00:00 2001 From: Amy Chen <46451573+amychen1776@users.noreply.github.com> Date: Wed, 7 Aug 2024 11:18:36 -0400 Subject: [PATCH] Update data-test-configs.md --- website/docs/reference/data-test-configs.md | 27 --------------------- 1 file changed, 27 deletions(-) diff --git a/website/docs/reference/data-test-configs.md b/website/docs/reference/data-test-configs.md index 577908ce031..e7adc266b07 100644 --- a/website/docs/reference/data-test-configs.md +++ b/website/docs/reference/data-test-configs.md @@ -275,30 +275,3 @@ tests: ``` - -#### Specify custom configurations for generic data tests - -:::note - -This functionality is supported on ["Versionless"](/docs/dbt-versions/upgrade-dbt-version-in-cloud#versionless). Specifying custom configurations for data tests will become available in dbt Core v1.9, available later this year. - -::: - -Use any custom config key to specify custom configurations for data tests. For example, the following specifies the `snowflake_warehouse` custom config that dbt should use when executing the `accepted_values` data test: - -```yml - -models: - - name: my_model - columns: - - name: color - tests: - - accepted_values: - values: ['blue', 'red'] - config: - severity: warn - snowflake_warehouse: my_warehouse - -``` - -Given the config, the data test runs on a different Snowflake virtual warehouse than the one in your default connection to enable better price-performance with a different warehouse size or more granular cost allocation and visibility.