Skip to content

Commit

Permalink
add enabled to schema for unit tests (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsturge authored Oct 30, 2024
1 parent be68b64 commit c7bc383
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 7 additions & 1 deletion schemas/latest/dbt_project-latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -1084,12 +1084,18 @@
},
"unit_test_configs": {
"properties": {
"+enabled": {
"$ref": "#/$defs/boolean_or_jinja_string"
},
"+meta": {
"$ref": "#/$defs/meta"
},
"+tags": {
"$ref": "#/$defs/tags"
},
"enabled": {
"$ref": "#/$defs/boolean_or_jinja_string"
},
"meta": {
"$ref": "#/$defs/meta"
},
Expand All @@ -1115,4 +1121,4 @@
"type": "string"
}
}
}
}
5 changes: 4 additions & 1 deletion schemas/latest/dbt_yml_files-latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -983,6 +983,9 @@
"config": {
"type": "object",
"properties": {
"enabled": {
"$ref": "#/$defs/boolean_or_jinja_string"
},
"meta": {
"type": "object"
},
Expand Down Expand Up @@ -2143,4 +2146,4 @@
"additionalProperties": false
}
}
}
}

0 comments on commit c7bc383

Please sign in to comment.