Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
7f1f4d9e
提交
7f1f4d9e
authored
5月 17, 2011
作者:
Olivier Delalleau
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Improved script running tests individually to allow batches of tests
上级
040012cc
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
31 行增加
和
9 行删除
+31
-9
run_individual_tests.py
theano/tests/run_individual_tests.py
+31
-9
没有找到文件。
theano/tests/run_individual_tests.py
浏览文件 @
7f1f4d9e
...
...
@@ -17,12 +17,17 @@ This script performs three tasks:
One reason to use this script is if you are a Windows user, and see errors like
"Not enough storage is available to process this command" when trying to simply
run `nosetests` in your Theano installation directory.
By using this script, nosetests is run on each test individually, which is
By using this script, nosetests is run on each test individually, which is
much
slower but should at least let you run the test suite.
Note that this script is experimental and might not actually be running the
whole test suite (it is suspicious that the first step reports more tests than
the amount of tests found in the resulting '.noseids' file).
Note that this script is a work-in-progress and is not fully functional at this
point: the way some tests are defined in the Theano test-suite seems to confuse
nosetests' TestID module, probably leading to not running all tests, as well as
to some unexpected test failures.
You can also provide a single command-line argument, which should be an integer
number N (default = 1), in order to run batches of N tests rather than run tests
one at a time. It will be faster (but may fail under Windows if N is too large).
"""
...
...
@@ -45,11 +50,28 @@ def main():
ids
=
data
[
'ids'
]
n_tests
=
len
(
ids
)
# Run tests.
for
test_id
in
xrange
(
1
,
n_tests
+
1
):
subprocess
.
call
([
'nosetests'
,
'-v'
,
'--with-id'
,
str
(
test_id
)])
# Re-run only failed tests
subprocess
.
call
([
'nosetests'
,
'-v'
,
'--failed'
])
return
0
n_batch
=
1
if
len
(
sys
.
argv
)
>=
2
:
n_batch
=
int
(
sys
.
argv
[
1
])
has_error
=
0
for
test_id
in
xrange
(
1
,
n_tests
+
1
,
n_batch
):
test_range
=
range
(
test_id
,
min
(
test_id
+
n_batch
,
n_tests
+
1
))
rval
=
subprocess
.
call
([
'nosetests'
,
'-v'
,
'--with-id'
]
+
map
(
str
,
test_range
))
has_error
+=
rval
if
has_error
:
# Re-run only failed tests
print
"""
\
###########################
# RE-RUNNING FAILED TESTS #
###########################"""
subprocess
.
call
([
'nosetests'
,
'-v'
,
'--failed'
])
return
0
else
:
print
"""
\
####################
# ALL TESTS PASSED #
####################"""
if
__name__
==
'__main__'
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论