未验证 提交 e6e74796 编写于 作者: L Lukáš Doktor

Merging pull request 1616

* https://github.com/avocado-framework/avocado:
  Plugin listing: add result events based plugin to the list
  avocado/plugins/journal.py: add missing name and description
  avocado/plugins/run.py: simple typo (white space missing) fix
......@@ -41,6 +41,9 @@ class JournalResult(ResultEvents):
feedback to users from a central place.
"""
name = 'journal'
description = "Journal event based results implementation"
def __init__(self, args):
"""
Creates an instance of ResultJournal.
......
......@@ -48,7 +48,10 @@ class Plugins(CLICmd):
(dispatcher.JobPrePostDispatcher(),
'Plugins that run before/after the execution of jobs (job.prepost):'),
(dispatcher.ResultDispatcher(),
'Plugins that generate job result in different formats (result):')
'Plugins that generate job result in different formats (result):'),
(dispatcher.ResultEventsDispatcher(args),
('Plugins that generate job result based on job/test events '
'(result_events):'))
]
for plugins_active, msg in plugin_types:
log.info(msg)
......
......@@ -36,7 +36,7 @@ class Run(CLICmd):
"""
name = 'run'
description = ("Runs one or more tests (native test, test alias, binary"
description = ("Runs one or more tests (native test, test alias, binary "
"or script)")
def configure(self, parser):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册