You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 0.7 of invoke passed arguments also to the pre-tasks. Seems like this is not happening with 0.10.1.
Example:
@taskdeftask2(argument):
# do something@task1("task2")deftask1(argument):
# do something
With version 0.7 invoke task1 --argument foo would execute task2 and then task1. This also happens with v0.10.1, but with v0.7 both tasks would get the argument "foo". This is not happening with v0.10.1.
PS: I know that the pre tasks are no longer passed as a string in the decorator.