-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert dbt to use dataclasses and hologram for representing things
Most of the things that previously used manually created jsonschemas Split tests into their own node type Change tests to reflect that tables require a freshness block add a lot more debug-logging on exceptions Make things that get passed to Var() tell it about their vars finally make .empty a property documentation resource type is now a property, not serialized added a Mergeable helper mixin to perform simple merges Convert some oneOf checks into if-else chains to get better errors Add more tests Use "Any" as value in type defs - accept the warning from hologram for now, PR out to suppress it set default values for enabled/materialized Clean up the Parsed/Compiled type hierarchy Allow generic snapshot definitions remove the "graph" entry in the context - This improves performance on large projects significantly Update changelog to reflect removing graph
- Loading branch information
Jacob Beck
committed
Jul 16, 2019
1 parent
10be7ba
commit 49f7cf8
Showing
85 changed files
with
5,556 additions
and
4,416 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# all these are just exports, they need "noqa" so flake8 will not complain. | ||
from .renderer import ConfigRenderer # noqa | ||
from .profile import Profile, UserConfig, PROFILES_DIR # noqa | ||
from .profile import Profile, PROFILES_DIR, read_user_config # noqa | ||
from .project import Project # noqa | ||
from .runtime import RuntimeConfig # noqa |
Oops, something went wrong.