Skip to content

Commit

Permalink
re-add --warn-error flag
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbanin committed Mar 11, 2019
1 parent 7415256 commit 90fb908
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions core/dbt/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,14 @@ def parse_args(args):
help='''Run schema validations at runtime. This will surface
bugs in dbt, but may incur a performance penalty.''')

p.add_argument(
'--warn-error',
action='store_true',
help='''If dbt would normally warn, instead raise an exception.
Examples include --models that selects nothing, deprecations,
configurations with no associated models, invalid test configurations,
and missing sources/refs in tests''')

# if set, run dbt in single-threaded mode: thread count is ignored, and
# calls go through `map` instead of the thread pool. This is useful for
# getting performance information about aspects of dbt that normally run in
Expand Down

0 comments on commit 90fb908

Please sign in to comment.