Skip to content

Commit

Permalink
Merge pull request #1347 from fishtown-analytics/fix/warn-error-flag
Browse files Browse the repository at this point in the history
re-add --warn-error flag
  • Loading branch information
drewbanin authored Mar 12, 2019
2 parents 4771452 + 90fb908 commit a981f65
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 a981f65

Please sign in to comment.