Improve error message for packages in src folder#10236
Open
martinvotruba-r7 wants to merge 8 commits intopython-poetry:mainfrom
Open
Improve error message for packages in src folder#10236martinvotruba-r7 wants to merge 8 commits intopython-poetry:mainfrom
martinvotruba-r7 wants to merge 8 commits intopython-poetry:mainfrom
Conversation
Reviewer's Guide by SourceryThis pull request improves the user experience by adding a warning message when a Poetry project has a potential misconfiguration: an empty directory in the project root with the same name as the project, while the actual package resides in the No diagrams generated as the changes look simple and do not need a visual representation. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
2 tasks
There was a problem hiding this comment.
Hey @martinvotruba-r7 - I've reviewed your changes - here's some feedback:
Overall Comments:
- Consider adding a test case where the root
project_namedirectory exists but is not empty.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem description
Currently when a
poetry installcommand is run on a project, which has source stored undersrc/project_name, but a folder namedproject_nameexists in the root, the command will fail withproject_name is not a package.It can be rather hard to determine the root cause, as one might easily overlook the empty folder.Steps to reproduce
poetry new poetry-demopoetry_demo/__init__.pytosrc/poetry_demo/__init__.pypoetry installThe command will fail with the following
This is caused by the presence of poetry_demo folder in the root.
When I remove the poetry_demo folder, the
poetry installcommand succeeds.Resolution
To provide more information about the actual root cause of the issue, I have added another validation method to the Factory class. This will output a warning when there is both
project_namefolder in the rootsrc/project_namefolderThe provided warning message is the following
If there is a better place / method how to alert user to the empty
project_namefolder, I am happy to hear it and adjust my implementation.Summary by Sourcery
Tests: