Skip to content
Snippets Groups Projects
Commit b6b4f875 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

better --dry_run printouts

parent e922d770
No related branches found
No related tags found
No related merge requests found
...@@ -265,7 +265,10 @@ print('copied to the docker environment or into subworkspaces.') ...@@ -265,7 +265,10 @@ print('copied to the docker environment or into subworkspaces.')
print print
print 'Will run these tests:' print 'Will run these tests:'
for job in jobs: for job in jobs:
print ' %s' % job.shortname if args.dry_run:
print ' %s: "%s"' % (job.shortname, ' '.join(job.cmdline))
else:
print ' %s' % job.shortname
print print
if args.dry_run: if args.dry_run:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment