Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
avocado
提交
f43f548d
A
avocado
项目概览
openeuler
/
avocado
通知
0
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
avocado
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f43f548d
编写于
11月 18, 2015
作者:
L
Lucas Meneghel Rodrigues
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #882 from clebergnu/misc_fixes
Miscellaneous fixes
上级
e55a42e8
bf5fe0ff
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
3 addition
and
29 deletion
+3
-29
avocado/core/app.py
avocado/core/app.py
+2
-2
avocado/core/runner.py
avocado/core/runner.py
+1
-1
examples/plugins/avocado_hello.py
examples/plugins/avocado_hello.py
+0
-26
未找到文件。
avocado/core/app.py
浏览文件 @
f43f548d
...
...
@@ -18,7 +18,7 @@ The core Avocado application.
import
os
from
.log
import
configure
from
.log
import
configure
as
configure_log
from
.parser
import
Parser
from
.plugins.manager
import
get_plugin_manager
...
...
@@ -34,7 +34,7 @@ class AvocadoApp(object):
# Catch all libc runtime errors to STDERR
os
.
environ
[
'LIBC_FATAL_STDERR_'
]
=
'1'
configure
()
configure
_log
()
self
.
plugin_manager
=
None
self
.
parser
=
Parser
()
self
.
parser
.
start
()
...
...
avocado/core/runner.py
浏览文件 @
f43f548d
...
...
@@ -166,7 +166,7 @@ class TestRunner(object):
Creates an instance of TestRunner class.
:param job: an instance of :class:`avocado.core.job.Job`.
:param test_result: an instance of :class:`avocado.core.result.TestResult`.
:param test_result: an instance of :class:`avocado.core.result.TestResult
Proxy
`.
"""
self
.
job
=
job
self
.
result
=
test_result
...
...
examples/plugins/avocado_hello.py
已删除
100644 → 0
浏览文件 @
e55a42e8
from
avocado.core.plugins
import
plugin
class
HelloWorld
(
plugin
.
Plugin
):
"""
The classical Hello World! plugin example.
"""
name
=
'hello_world'
enabled
=
True
def
configure
(
self
,
parser
):
"""
Add the subparser for the 'hello' action.
"""
self
.
parser
=
parser
.
subcommands
.
add_parser
(
'hello'
,
help
=
'Hello World! plugin example'
)
super
(
HelloWorld
,
self
).
configure
(
self
.
parser
)
def
run
(
self
,
args
):
"""
This method is called whenever we use the command 'hello'.
"""
print
(
self
.
__doc__
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录