Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenDILab开源决策智能平台
treevalue
提交
91c468a0
T
treevalue
项目概览
OpenDILab开源决策智能平台
/
treevalue
大约 1 年 前同步成功
通知
3
Star
213
Fork
3
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
treevalue
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
91c468a0
编写于
10月 14, 2021
作者:
HansBug
😆
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
dev(hansbug): pass all the test in py3.9
上级
27ab7463
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
9 deletion
+6
-9
.github/workflows/test.yml
.github/workflows/test.yml
+2
-0
test/entry/cli/test_export.py
test/entry/cli/test_export.py
+4
-4
test/tree/general/base.py
test/tree/general/base.py
+0
-5
未找到文件。
.github/workflows/test.yml
浏览文件 @
91c468a0
...
...
@@ -9,6 +9,7 @@ jobs:
name
:
Code test
runs-on
:
${{ matrix.os }}
strategy
:
fail-fast
:
false
matrix
:
os
:
-
'
ubuntu-18.04'
...
...
@@ -73,6 +74,7 @@ jobs:
name
:
Try build the release
runs-on
:
${{ matrix.os }}
strategy
:
fail-fast
:
false
matrix
:
os
:
-
'
ubuntu-18.04'
...
...
test/entry/cli/test_export.py
浏览文件 @
91c468a0
...
...
@@ -32,7 +32,7 @@ class TestEntryCliExport:
assert
result
.
exit_code
==
0
assert
os
.
path
.
exists
(
't1.btv'
)
assert
150
<
os
.
path
.
getsize
(
't1.btv'
)
<
2
2
0
assert
150
<
os
.
path
.
getsize
(
't1.btv'
)
<
2
3
0
with
open
(
't1.btv'
,
'rb'
)
as
file
:
assert
load
(
file
,
type_
=
FastTreeValue
)
==
t1
...
...
@@ -44,7 +44,7 @@ class TestEntryCliExport:
assert
result
.
exit_code
==
0
assert
os
.
path
.
exists
(
't1.btv'
)
assert
150
<
os
.
path
.
getsize
(
't1.btv'
)
<
2
2
0
assert
150
<
os
.
path
.
getsize
(
't1.btv'
)
<
2
3
0
assert
os
.
path
.
exists
(
't2.btv'
)
assert
200
<
os
.
path
.
getsize
(
't2.btv'
)
<
280
assert
os
.
path
.
exists
(
't3.btv'
)
...
...
@@ -125,7 +125,7 @@ class TestEntryCliExport:
assert
os
.
path
.
exists
(
't2.btv'
)
assert
160
<
os
.
path
.
getsize
(
't2.btv'
)
<
240
assert
os
.
path
.
exists
(
't3.btv'
)
assert
160
<
os
.
path
.
getsize
(
't3.btv'
)
<
2
0
0
assert
160
<
os
.
path
.
getsize
(
't3.btv'
)
<
2
1
0
with
open
(
't1.btv'
,
'rb'
)
as
file
:
assert
load
(
file
,
type_
=
FastTreeValue
)
==
t1
...
...
@@ -142,7 +142,7 @@ class TestEntryCliExport:
assert
result
.
exit_code
==
0
assert
os
.
path
.
exists
(
't1.btv'
)
assert
260
<
os
.
path
.
getsize
(
't1.btv'
)
<
3
0
0
assert
260
<
os
.
path
.
getsize
(
't1.btv'
)
<
3
1
0
assert
os
.
path
.
exists
(
't2.btv'
)
assert
280
<
os
.
path
.
getsize
(
't2.btv'
)
<
370
assert
os
.
path
.
exists
(
't3.btv'
)
...
...
test/tree/general/base.py
浏览文件 @
91c468a0
...
...
@@ -42,12 +42,7 @@ def get_tree_test(tree_value_clazz: Type[TreeValue]):
t3
=
tree_value_clazz
({
'a'
:
14
,
'b'
:
26
,
'x'
:
{
'c'
:
38
,
'd'
:
11
}})
assert
t3
.
json
()
==
{
'a'
:
14
,
'b'
:
26
,
'x'
:
{
'c'
:
38
,
'd'
:
11
}}
t4
=
t3
.
view
([
'x'
])
t5
=
t3
.
x
.
clone
()
assert
t4
==
tree_value_clazz
({
'c'
:
38
,
'd'
:
11
})
assert
t5
==
tree_value_clazz
({
'c'
:
38
,
'd'
:
11
})
t3
.
x
.
c
=
100
assert
t4
==
tree_value_clazz
({
'c'
:
100
,
'd'
:
11
})
assert
t5
==
tree_value_clazz
({
'c'
:
38
,
'd'
:
11
})
def
test_numeric_add
(
self
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录