Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
avocado
提交
cd3ce772
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看板
提交
cd3ce772
编写于
5月 18, 2015
作者:
L
Lucas Meneghel Rodrigues
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #602 from ruda/pre_release_updates
Updates for the upcoming version 0.24.0
上级
817afb7b
8f8f735a
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
11 addition
and
8 deletion
+11
-8
avocado.spec
avocado.spec
+8
-5
avocado/version.py
avocado/version.py
+1
-1
setup.py
setup.py
+2
-2
未找到文件。
avocado.spec
浏览文件 @
cd3ce772
Summary: Avocado Test Framework
Name: avocado
Version: 0.2
3
.0
Version: 0.2
4
.0
Release: 1%{?dist}
License: GPLv2
Group: Development/Tools
...
...
@@ -67,8 +67,8 @@ selftests/run selftests/all/unit
%{_mandir}/man1/avocado-rest-client.1.gz
%{_docdir}/avocado/avocado.rst
%{_docdir}/avocado/avocado-rest-client.rst
%exclude %{python_sitelib}/avocado/plugins/htmlresult.py*
%exclude %{python_sitelib}/avocado/plugins/resources/htmlresult/*
%exclude %{python_sitelib}/avocado/
core/
plugins/htmlresult.py*
%exclude %{python_sitelib}/avocado/
core/
plugins/resources/htmlresult/*
%{_libexecdir}/avocado/avocado-bash-utils
%{_libexecdir}/avocado/avocado_debug
%{_libexecdir}/avocado/avocado_error
...
...
@@ -85,8 +85,8 @@ directory. It also gives the user the ability to write a report on an
arbitrary filesystem location.
%files plugins-output-html
%{python_sitelib}/avocado/plugins/htmlresult.py*
%{python_sitelib}/avocado/plugins/resources/htmlresult/*
%{python_sitelib}/avocado/
core/
plugins/htmlresult.py*
%{python_sitelib}/avocado/
core/
plugins/resources/htmlresult/*
%package examples
Summary: Avocado Test Framework Example Tests
...
...
@@ -103,6 +103,9 @@ examples of how to write tests on your own.
%{_datadir}/avocado/api
%changelog
* Mon May 18 2015 Ruda Moura <rmoura@redhat.com> - 0.24.0-1
- Update to upstream version 0.24.0
* Tue Apr 21 2015 Lucas Meneghel Rodrigues <lmr@redhat.com> - 0.23.0-1
- New upstream release
...
...
avocado/version.py
浏览文件 @
cd3ce772
...
...
@@ -18,7 +18,7 @@ __all__ = ['MAJOR', 'MINOR', 'RELEASE', 'VERSION']
MAJOR
=
0
MINOR
=
2
3
MINOR
=
2
4
RELEASE
=
0
VERSION
=
"%s.%s.%s"
%
(
MAJOR
,
MINOR
,
RELEASE
)
...
...
setup.py
浏览文件 @
cd3ce772
...
...
@@ -89,7 +89,7 @@ def _get_plugin_resource_files(path):
for
root
,
_
,
files
in
sorted
(
os
.
walk
(
path
)):
for
name
in
files
:
fullname
=
os
.
path
.
join
(
root
,
name
)
flist
.
append
(
fullname
[
len
(
'avocado/plugins/'
):])
flist
.
append
(
fullname
[
len
(
'avocado/
core/
plugins/'
):])
return
flist
...
...
@@ -118,7 +118,7 @@ if __name__ == '__main__':
'avocado.core.restclient.cli.args'
,
'avocado.core.restclient.cli.actions'
],
package_data
=
{
'avocado.core.plugins'
:
_get_plugin_resource_files
(
'avocado/plugins/resources'
)},
'avocado/
core/
plugins/resources'
)},
data_files
=
get_data_files
(),
scripts
=
[
'scripts/avocado'
,
'scripts/avocado-rest-client'
])
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录