VERSION: invoke-0.13.0 or newer (repo HEAD)
FILE: sites/doc/concepts/namespaces.rst
When you try the example that is described in the Aliases section:
ns.add_task(release, aliases=('deploy', 'pypi'))
it does not work because Collection.add_task() does not have an aliases parameter (or **kwargs argument). Note that the @task decorator still supports the aliases parameter.
SOLUTION (either / or):
- Fix the documentation related to
aliases
- Provide the
aliases parameter in the Collection.add_task() method again (?)