mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Clarify about unittest.main().
This commit is contained in:
parent
689a93cdd8
commit
14a333b990
1 changed files with 3 additions and 1 deletions
|
|
@ -39,7 +39,9 @@ def convert_argv(argv):
|
|||
help = True
|
||||
args.append(arg)
|
||||
|
||||
cmd = [sys.executable + ' -m unittest'] # ...how unittest.main() likes it.
|
||||
# We make the "executable" a single arg because unittest.main()
|
||||
# doesn't work if we split it into 3 parts.
|
||||
cmd = [sys.executable + ' -m unittest']
|
||||
if not modules and not help:
|
||||
# Do discovery.
|
||||
if quick:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue