mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Print start dir later.
This commit is contained in:
parent
e18d7fb0ca
commit
8603258ef5
1 changed files with 3 additions and 1 deletions
|
|
@ -75,7 +75,6 @@ def convert_argv(argv):
|
|||
start = quickroot
|
||||
else:
|
||||
start = PROJECT_ROOT
|
||||
print('(will look for tests under {})'.format(start))
|
||||
cmd += [
|
||||
'discover',
|
||||
'--top-level-directory', PROJECT_ROOT,
|
||||
|
|
@ -138,6 +137,9 @@ if __name__ == '__main__':
|
|||
if lint:
|
||||
check_lint()
|
||||
if runtests:
|
||||
if '--start-directory' in argv:
|
||||
start = argv[argv.index('--start-directory') + 1]
|
||||
print('(will look for tests under {})'.format(start))
|
||||
run_tests(
|
||||
argv,
|
||||
env,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue