This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1e6522
commit 09e05b1
Showing
2 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
from _pydevd_bundle.pydevd_comm import ( | ||
CMD_VERSION, | ||
CMD_RUN, | ||
) | ||
|
||
from tests.helpers.pydevd import FakePyDevd | ||
|
@@ -91,6 +92,7 @@ def _handshake(self, vsc, pydevd, command, | |
} | ||
with vsc.wait_for_response(req): | ||
vsc.send_request(req) | ||
pydevd.add_pending_response(CMD_RUN, '') | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ericsnowcurrently
Author
Member
|
||
req = { | ||
'type': 'request', | ||
'seq': self.next_vsc_seq(), | ||
|
This file contains 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
@ericsnowcurrently
Not sure whether this matters, but we recently learnt that CMD_RUN does not send back a response in pydevd