You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The v1.7 and latest project schemas are missing valid values for store_failures_as. Since this was valid from v1.7 onwards, it's correct to be missing in v1.5 and v1.6.
./dbt_project.yml#/tests/+store_failures_as must be object
./dbt_project.yml#/tests/+store_failures_as must be null
./dbt_project.yml#/tests/+store_failures_as must match exactly one schema in oneOf
According to the docs:
The three supported values are:
ephemeral — nothing stored in the database (default)
table — test failures stored as a database table
view — test failures stored as a database view
You can configure it in all the same places as store_failures, including singular tests (.sql files), generic tests (.yml files), and dbt_project.yml.
Are there files for validating singular tests that I should also check for this bug?
The text was updated successfully, but these errors were encountered:
The v1.7 and latest project schemas are missing valid values for store_failures_as. Since this was valid from v1.7 onwards, it's correct to be missing in v1.5 and v1.6.
This causes a validation error (e.g. using
v8r
):According to the docs:
Are there files for validating singular tests that I should also check for this bug?
The text was updated successfully, but these errors were encountered: