You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 2, 2023. It is now read-only.
I've got a couple of unit tests in VSC Python extension, one of the tests fail almost -25%-50% of the time when using the new PTVSD debugger. What's interesting is the same tests pass 100% of the time when using the old PTVSD debugger.
In the unit test I add a breakpoint to the line bar() inside the loop.
I can see (after placing print statements) that two threads are running the while loop.
However, the tests fail as the debugger fails to break at the break point.
@karthiknadig cc.
I know you have experienced a few issues with multi-threaded debugging.
I've got a couple of unit tests in VSC Python extension, one of the tests fail almost -25%-50% of the time when using the new PTVSD debugger. What's interesting is the same tests pass 100% of the time when using the old PTVSD debugger.
Here's the python code
In the unit test I add a breakpoint to the line
bar()inside the loop.I can see (after placing print statements) that two threads are running the while loop.
However, the tests fail as the debugger fails to break at the break point.
@karthiknadig cc.
I know you have experienced a few issues with multi-threaded debugging.