pyinvoke / invoke

Pythonic task management & command execution.
http://pyinvoke.org
BSD 2-Clause "Simplified" License
4.38k stars 367 forks source link

Add an option for the user to define the order of tasks in a collection #832

Open yonil7 opened 2 years ago

yonil7 commented 2 years ago

example:

ns = Collection([build, test, deploy])
$ invoke --list
Available tasks:

    build
    test
    deploy

and not:

$ invoke --list
Available tasks:

    build
    deploy
    test