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 (?)
The text was updated successfully, but these errors were encountered:
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 analiases
parameter (or**kwargs
argument). Note that the@task
decorator still supports thealiases
parameter.SOLUTION (either / or):
aliases
aliases
parameter in theCollection.add_task()
method again (?)The text was updated successfully, but these errors were encountered: