-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* clean up debugging * reword some comments * changelog * add more tests * move around the manifest.node * fix typos * all tests passing * move logic for moving around nodes * add tests * more cleanup * fix failing pp test * remove comments * add more tests, patch all disabled nodes * fix test for windows * fix node processing to not overwrite enabled nodes * add checking disabled in pp, fix error msg * stop deepcopying all nodes when processing * update error message (cherry picked from commit fa4f9d3) Co-authored-by: Emily Rockman <[email protected]>
- Loading branch information
1 parent
9a81a4d
commit 2584465
Showing
10 changed files
with
599 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
kind: Fixes | ||
body: Account for disabled flags on models in schema files more completely | ||
time: 2022-09-16T10:48:54.162273-05:00 | ||
custom: | ||
Author: emmyoop | ||
Issue: "3992" | ||
PR: "5868" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
test/integration/068_partial_parsing_tests/test-files/models-schema4.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
|
||
models: | ||
- name: model_one | ||
description: "The first model" | ||
- name: model_three | ||
description: "The third model" | ||
config: | ||
enabled: false | ||
columns: | ||
- name: id | ||
tests: | ||
- unique |
13 changes: 13 additions & 0 deletions
13
test/integration/068_partial_parsing_tests/test-files/models-schema4b.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
|
||
models: | ||
- name: model_one | ||
description: "The first model" | ||
- name: model_three | ||
description: "The third model" | ||
config: | ||
enabled: true | ||
columns: | ||
- name: id | ||
tests: | ||
- unique |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.