本文整理汇总了Python中seqan.app_tests.main函数的典型用法代码示例。如果您正苦于以下问题:Python main函数的具体用法?Python main怎么用?Python main使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了main函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: len
# ============================================================
# Execute the tests.
# ============================================================
failures = 0
counter = 0
for conf in conf_list:
res = app_tests.runTest(conf)
# Output to the user.
print ' '.join([path_to_program[counter]] + conf.args),
if res:
print 'OK'
else:
failures += 1
print 'FAILED'
counter += 1
# Cleanup.
ph.deleteTempDir()
print '=============================='
print ' total tests: %d' % len(conf_list)
print ' failed tests: %d' % failures
print 'successful tests: %d' % (len(conf_list) - failures)
print '=============================='
# Compute and return return code.
return failures != 0
if __name__ == '__main__':
sys.exit(app_tests.main(main))
开发者ID:weese,项目名称:seqan,代码行数:30,代码来源:run_tests.py
示例2: tests
#!/usr/bin/env python2
"""Sequential tests (num_threads == 0) for RazerS 3.
See run_tests.py for the actual tests. We only call the code from there.
"""
import logging
import os.path
import sys
# Automagically add util/py_lib to PYTHONPATH environment variable.
path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..',
'..', '..', 'util', 'py_lib'))
sys.path.insert(0, path)
import seqan.app_tests as app_tests
import run_tests
if __name__ == '__main__':
sys.exit(app_tests.main(run_tests.main, num_threads=0))
开发者ID:IsmailM,项目名称:seqan,代码行数:21,代码来源:run_tests_sequential.py
注:本文中的seqan.app_tests.main函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论