avocado.plugins.runner: Make the test runner to use the new Job class

Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
上级 12150192
......@@ -8,7 +8,7 @@ from avocado.plugins import plugin
from avocado.core import data_dir
from avocado.core import output
from avocado import sysinfo
from avocado import test
from avocado import job
class TestLister(plugin.Plugin):
......@@ -71,7 +71,8 @@ class TestRunner(plugin.Plugin):
:param args: Command line args received from the run subparser.
"""
test.run_tests(args)
job_instance = job.Job(args)
job_instance.run()
class SystemInformation(plugin.Plugin):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册