print all steps that we are running with
This commit is contained in:
parent
9134145e02
commit
962c9a2f38
1 changed files with 1 additions and 0 deletions
|
|
@ -25,6 +25,7 @@ steps_to_handlers = {
|
||||||
type=click.Choice(steps_to_handlers.keys())
|
type=click.Choice(steps_to_handlers.keys())
|
||||||
)
|
)
|
||||||
def main(step: list[str]):
|
def main(step: list[str]):
|
||||||
|
click.echo(f'Running steps: {step}')
|
||||||
for s in step:
|
for s in step:
|
||||||
click.echo(f'Calling handler for step: {s}')
|
click.echo(f'Calling handler for step: {s}')
|
||||||
steps_to_handlers[s]()
|
steps_to_handlers[s]()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue