Skip to content

Commit

Permalink
πŸ› Updated --no-config flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafalz13 committed Mar 6, 2024
1 parent 64bce20 commit c47c120
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viadot/tasks/luma.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ def __init__(
secret=credentials_secret, vault_name=vault_name
)
url = json.loads(credentials_str).get("url")
self.helper_script = dbt_project_path
self.helper_script = f"cd {dbt_project_path}"
self.url = url
self.metadata_dir_path = metadata_dir_path
self.command = f"luma dbt send-test-results --luma-url {url} --metadata-dir {metadata_dir_path} --no config"
self.command = f"luma dbt send-test-results --luma-url {url} --metadata-dir {metadata_dir_path} --no-config"
self.return_all = True
self.stream_output = True
self.log_stderr = True

0 comments on commit c47c120

Please sign in to comment.