Invoke is a task running tool that makes development tasks easier to run. This adds a bunch of common tasks for developing on hubs and decreases typing.
Examples:
$ inv server # runs python runserver.py
$ inv req # runs pip install -r requirements.txt
$ inv req --test # runs ^ plus pip install -r test-requrements.txt
seems to me that this does the same things than what we have (so nothing new) and adds a new dependency.
Not sure I'm entirely fan of it
ok. closing
Pull-Request has been closed by atelic
Invoke is a task running tool that makes development tasks easier to run. This adds a bunch of common tasks for developing on hubs and decreases typing.
Examples:
$ inv server # runs python runserver.py$ inv req # runs pip install -r requirements.txt$ inv req --test # runs ^ plus pip install -r test-requrements.txt