@echo off
:: Copyright 2008-2009 Nokia Siemens Networks Oyj
::
:: Licensed under the Apache License, Version 2.0 (the "License");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
::
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
::
:: pybot.bat -- Python start up script for Robot Framework on Windows
::
:: Python executable to use.
set python="C:\Python26\python.exe"
:: Path to robot\runner.py
set runner="Python26\lib\site-packages\robot\runner.py"
:: Run Robot on Python interpreter
%python% %runner% %*
文件位置:C:\Python26\Scripts\pybot.bat
这个是windows下面的启动文件,这些路径是安装的时候设定,今后要注意看一下安装脚本,该windows脚本直接调用:"C:\Python26\lib\site-packages\robot\runner.py"
阅读(23794) | 评论(0) | 转发(0) |