Skip to content

Commit

Permalink
fix this for real in a way that will make me not break it again
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Beck committed Mar 25, 2019
1 parent 596b0c7 commit 30466b2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/integration/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,8 +445,13 @@ def run_dbt(self, args=None, expect_pass=True, strict=True):
if args is None:
args = ["run"]

prefix = []
if strict:
args = ["--strict"] + args
prefix.append('--strict')
if os.getenv('DBT_TEST_SINGLE_THREADED') in ('y', 'Y', '1'):
prefix.append('--single-threaded')
args = prefix + args

args.append('--log-cache-events')
logger.info("Invoking dbt with {}".format(args))

Expand Down

0 comments on commit 30466b2

Please sign in to comment.