mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Fixes issue with unittests returning boolean exit codes
This commit is contained in:
parent
71403c1c8f
commit
86e39121a1
1 changed files with 1 additions and 1 deletions
|
|
@ -32,5 +32,5 @@ def debug(filename, port_num, debug_id, debug_options, run_as):
|
|||
try:
|
||||
pydevd.main()
|
||||
except SystemExit as ex:
|
||||
ptvsd.wrapper.ptvsd_sys_exit_code = ex.code
|
||||
ptvsd.wrapper.ptvsd_sys_exit_code = int(ex.code)
|
||||
raise
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue