Skip to content

Commit

Permalink
[Fix] E2E test failed issue
Browse files Browse the repository at this point in the history
Signed-off-by: Kent Huang <[email protected]>
  • Loading branch information
kentwelcome committed Oct 18, 2023
1 parent e73ff00 commit 4a6ddde
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions piperider_cli/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,11 +644,12 @@ def exec(datasource=None, table=None, output=None, skip_report=False, dbt_target
if skip_datasource_connection:
event_payload.skip_datasource = True

console.rule('DBT')
console.print('Profile: ', style='bold', end='')
console.print(f'{configuration.dbt.get("profile")}', style='cyan')
console.print('Target: ', style='bold', end='')
console.print(f'{configuration.dbt.get("target")}', style='cyan')
if configuration.dbt:
console.rule('DBT')
console.print('Profile: ', style='bold', end='')
console.print(f'{configuration.dbt.get("profile")}', style='cyan')
console.print('Target: ', style='bold', end='')
console.print(f'{configuration.dbt.get("target")}', style='cyan')

# Validating
console.rule('Validating')
Expand Down

0 comments on commit 4a6ddde

Please sign in to comment.