-
Notifications
You must be signed in to change notification settings - Fork 903
New issue
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
--addons=all
doesn't behave as expected
#3334
Comments
Should also test: |
just tested it and it generates the files, the issue is happening only with the |
I think I see the problem it might be in kedro/kedro/framework/cli/starters.py Lines 469 to 490 in 7d295e8
We don't have a check for the "all" flag. We should probably also have "none" check here as well as the None , confusing I know.
Something like this should fix it:
PS @AhdraMeraliQB pointed out:
|
Completed in: #3361 |
Description
When I use
--addons=all
or--addons all
inkedro new
directly I don't get all addons as expected.You can also see in the message:
Steps to Reproduce
develop
branchkedro new --addons=all
orkedro new --addons all
Expected Result
The resulting project should have tests folder and requirements for linting, testing and logging etc.
Actual Result
It doesn't have all the expected files and folder structures
❗ If I follow the prompts when doing
kedro new
and useall
the project gets created as expected.The text was updated successfully, but these errors were encountered: