代码拉取完成,页面将自动刷新
#!/usr/bin/env python
"""rundevel.py -- script to run the current Robot Framework code
Usage: [interpreter] rundevel.py [run|rebot] [options] [arguments]
Options and arguments are same as Robot Framework itself accepts. Sets some
command line options and environment variables to ease executing tests under
the `atest/testdata` directory. Writes all outputs into `tmp` directory in
the project root.
Examples:
./rundevel.py --name Example tests.robot # Run with default Python
./rundevel.py run --name Example tests.robot # Same as the above
jython rundevel.py --name Example tests.robot # Run with Jython
./rundevel.py rebot --name Example out.robot # Rebot with Jython
ipy rundevel.py rebot --name Example out.robot # Rebot with IronPython
"""
from os.path import abspath, dirname, exists, join
import os
import sys
if len(sys.argv) == 1:
sys.exit(__doc__)
curdir = dirname(abspath(__file__))
src = join(curdir, 'src')
tmp = join(curdir, 'tmp')
tmp2 = join(tmp, 'rundevel')
if not exists(tmp):
os.mkdir(tmp)
if not exists(tmp2):
os.mkdir(tmp2)
os.environ['ROBOT_SYSLOG_FILE'] = join(tmp, 'syslog.txt')
os.environ['ROBOT_INTERNAL_TRACES'] = 'yes'
os.environ['TEMPDIR'] = tmp2 # Used by tests under atest/testdata
if 'PYTHONPATH' not in os.environ: # Allow executed scripts to import robot
os.environ['PYTHONPATH'] = src
else:
os.environ['PYTHONPATH'] = os.pathsep.join([src, os.environ['PYTHONPATH']])
sys.path.insert(0, src)
from robot import run_cli, rebot_cli
if sys.argv[1] == 'rebot':
runner = rebot_cli
args = sys.argv[2:]
else:
runner = run_cli
args = ['--pythonpath', join(curdir, 'atest', 'testresources', 'testlibs'),
'--pythonpath', tmp,
'--loglevel', 'DEBUG']
args += sys.argv[2:] if sys.argv[1] == 'run' else sys.argv[1:]
runner(['--outputdir', tmp] + args)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。