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

fix 8948 9575 #9606

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
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
36 changes: 2 additions & 34 deletions core/dbt/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ def global_flags(func):
@p.single_threaded
@p.state
@p.static_parser
@p.target
@p.target_path
@p.use_colors
@p.use_colors_file
@p.use_experimental_parser
Expand Down Expand Up @@ -197,8 +199,6 @@ def cli(ctx, **kwargs):
@p.selector
@p.show
@p.store_failures
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down Expand Up @@ -228,8 +228,6 @@ def build(ctx, **kwargs):
@p.profile
@p.profiles_dir
@p.project_dir
@p.target
@p.target_path
@p.vars
@requires.postflight
@requires.preflight
Expand Down Expand Up @@ -265,8 +263,6 @@ def docs(ctx, **kwargs):
@p.selector
@p.empty_catalog
@p.static
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down Expand Up @@ -297,8 +293,6 @@ def docs_generate(ctx, **kwargs):
@p.profile
@p.profiles_dir
@p.project_dir
@p.target
@p.target_path
@p.vars
@requires.postflight
@requires.preflight
Expand Down Expand Up @@ -333,8 +327,6 @@ def docs_serve(ctx, **kwargs):
@p.selector
@p.inline
@p.compile_inject_ephemeral_ctes
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down Expand Up @@ -372,8 +364,6 @@ def compile(ctx, **kwargs):
@p.select
@p.selector
@p.inline
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down Expand Up @@ -405,7 +395,6 @@ def show(ctx, **kwargs):
@p.profile
@p.profiles_dir_exists_false
@p.project_dir
@p.target
@p.vars
@requires.postflight
@requires.preflight
Expand All @@ -429,7 +418,6 @@ def debug(ctx, **kwargs):
@p.profile
@p.profiles_dir_exists_false
@p.project_dir
@p.target
@p.vars
@p.source
@p.lock
Expand Down Expand Up @@ -473,7 +461,6 @@ def deps(ctx, **kwargs):
@p.profiles_dir_exists_false
@p.project_dir
@p.skip_profile_setup
@p.target
@p.vars
@requires.postflight
@requires.preflight
Expand All @@ -500,8 +487,6 @@ def init(ctx, **kwargs):
@p.resource_type
@p.raw_select
@p.selector
@p.target
@p.target_path
@p.vars
@requires.postflight
@requires.preflight
Expand Down Expand Up @@ -535,8 +520,6 @@ def list(ctx, **kwargs):
@p.profile
@p.profiles_dir
@p.project_dir
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand All @@ -563,8 +546,6 @@ def parse(ctx, **kwargs):
@p.empty
@p.select
@p.selector
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down Expand Up @@ -594,7 +575,6 @@ def run(ctx, **kwargs):
@p.profiles_dir
@p.vars
@p.profile
@p.target
@p.threads
@p.full_refresh
@requires.postflight
Expand Down Expand Up @@ -627,8 +607,6 @@ def retry(ctx, **kwargs):
@p.resource_type
@p.select
@p.selector
@p.target
@p.target_path
@p.threads
@p.vars
@requires.preflight
Expand Down Expand Up @@ -659,8 +637,6 @@ def clone(ctx, **kwargs):
@p.profile
@p.profiles_dir
@p.project_dir
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down Expand Up @@ -694,8 +670,6 @@ def run_operation(ctx, **kwargs):
@p.select
@p.selector
@p.show
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down Expand Up @@ -726,8 +700,6 @@ def seed(ctx, **kwargs):
@p.project_dir
@p.select
@p.selector
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down Expand Up @@ -768,8 +740,6 @@ def source(ctx, **kwargs):
@p.project_dir
@p.select
@p.selector
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down Expand Up @@ -808,8 +778,6 @@ def freshness(ctx, **kwargs):
@p.select
@p.selector
@p.store_failures
@p.target
@p.target_path
@p.threads
@p.vars
@requires.postflight
Expand Down
Loading