提交 8c6f12fc 编写于 作者: L Lucas Meneghel Rodrigues

avocado.plugins.multiplexer: Reduce message priority for better output

Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
上级 4db835b0
......@@ -80,12 +80,12 @@ class Multiplexer(plugin.Plugin):
view.notify(event='message', msg='Variants generated:')
for (index, tpl) in enumerate(variants):
paths = ', '.join([x.path for x in tpl])
view.notify(event='message', msg='Variant %s: %s' % (index+1, paths))
view.notify(event='minor', msg='Variant %s: %s' % (index+1, paths))
if args.contents:
env = collections.OrderedDict()
for node in tpl:
env.update(node.environment)
for k in sorted(env.keys()):
view.notify(event='message', msg=' %s: %s' % (k, env[k]))
view.notify(event='minor', msg=' %s: %s' % (k, env[k]))
sys.exit(error_codes.numeric_status['AVOCADO_ALL_OK'])
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册