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 (?)
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:
it does not work because
Collection.add_task()does not have analiasesparameter (or**kwargsargument). Note that the@taskdecorator still supports thealiasesparameter.SOLUTION (either / or):
aliasesaliasesparameter in theCollection.add_task()method again (?)