-
Notifications
You must be signed in to change notification settings - Fork 664
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
Make FQCN import tasks include their relevant files for checking #1854
Conversation
Another option for fixing would be to split the string down on L328 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The fix seems logic and thanks for creating the PR.
Also, please update the tests in order to include a regression prevention measure. Think about a change, even to existing test covering the same functionality, that would fail if we remove your fix.
Tasks can come in in either the short format or the FQCN format as this is called before noramlize_task functions.
…named Includes the FQCN in the in the other locations that are called before normalize functions. This triggers the proper includes in all paths as well as fixing the `All tasks should be named` error when the FCQN version is used.
for more information, see https://pre-commit.ci
I combined in the fix for #1615 as adding the FQCN into the tests caused the This does not fix the fact that |
Tasks can come in in either the short format or the FQCN format
as this is called before noramlize_task functions.