Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve error handling when dbt manifest is not found #31

Merged
merged 9 commits into from
May 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add too-many-arguments
  • Loading branch information
matthieucan committed May 27, 2024
commit 7c839c181a0d43e2d8d7c23dffb932140d1325da
2 changes: 1 addition & 1 deletion src/dbt_score/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def lint(
run_dbt_parse: bool,
) -> None:
"""Lint dbt models metadata."""
# ruff: noqa: PLR0913
# ruff: noqa: PLR0913 too-many-arguments
druzhinin-kirill marked this conversation as resolved.
Show resolved Hide resolved
manifest_provided = (
click.get_current_context().get_parameter_source("manifest")
!= ParameterSource.DEFAULT
Expand Down
Loading