-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Separate files in pythonFiles by task #4609
Comments
Shouldn't we also consider deleting |
@karthiknadig - curious on your thoughts on this now since this is a few years old |
We should still do this. A lot of the files in that directory were testing related, so those can now be moved around. |
When debugging, the whole of
pythonFiles
is put on tosys.path
viaPYTHONPATH
. This led to an issue requiring a hotfix due to thetests
package accidentally being shipped in the.vsix
. Unfortunately this will continue to be a problem for any code placed in that directory.To help minimize future clashes with user code during debugging, it would be best to separate all code in that directory into thematic directories to minimize the chance of shadowing user's code. This is somewhat already done when dependencies are installed into
pythonFiles/lib/python
instead of intopythonFiles
directly.The text was updated successfully, but these errors were encountered: