Skip to content

Commit

Permalink
Removes skip arguments
Browse files Browse the repository at this point in the history
until #795 is fixed
  • Loading branch information
ivotron committed Mar 9, 2020
1 parent 1314bf1 commit 3611933
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cli/popper/commands/cmd_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
help=('Skip the given step (can be given multiple times).'),
required=False,
default=list(),
hidden=True,
multiple=True
)
@click.option(
Expand Down Expand Up @@ -94,6 +95,7 @@
'--with-dependencies',
help='When STEP is given, execute all its dependencies as well.',
required=False,
hidden=True,
is_flag=True
)
@click.option(
Expand All @@ -102,7 +104,6 @@
help='Path to workspace folder.',
required=False,
show_default=False,
hidden=True,
default=os.getcwd()
)
@click.option(
Expand Down

0 comments on commit 3611933

Please sign in to comment.