fabioz / PyDev.Debugger

Sources for the debugger used in PyDev, PyCharm and VSCode Python
Eclipse Public License 1.0
434 stars 122 forks source link

tests_python/test_debugger.py::test_py_37_breakpoint_remote_no_import fails on an installed pydevd #224

Open juliangilbey opened 2 years ago

juliangilbey commented 2 years ago

This test (tests_python/test_debugger.py::test_py_37_breakpoint_remote_no_import) depends upon having pydev_sitecustomize available. But that directory is not installed by setup.py, so this test fails when testing an installed pydevd (as opposed to testing the sources, where it passes).

I am not clear whether this test is only intended to test the sources and pydev_sitecustomize is only an example of what could be done, in which case this is not actually an issue, or whether pydev_sitecustomize should be included in the distribution. (It is explicitly listed in setup.py but commented out, so I think the former is the case, but I'm not sure. Feel free to close this issue if that is the case.)