We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to be able to define a set of tasks, and then load those tasks into multiple collections, each with a separate configuration.
Something like this:
tasks ├── __init__.py ├── config_a.yaml ├── config_b.yaml └── stuff.py
And in the __init__.py
__init__.py
from invoke import Collection import tasks.stuff ns = Collection() ns.add_collection(stuff, 'A') ns.add_collection(stuff, 'B')
How do I make the 'A' collection use config_a.yaml and 'B' use config_b.yaml?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I would like to be able to define a set of tasks, and then load those tasks into multiple collections, each with a separate configuration.
Something like this:
And in the
__init__.py
How do I make the 'A' collection use config_a.yaml and 'B' use config_b.yaml?
The text was updated successfully, but these errors were encountered: