Updates:
        Status: WontFix

Comment #7 on issue 332 by pekka.klarck: the output XML should be locked when the robot is running.
http://code.google.com/p/robotframework/issues/detail?id=332

I don't see us implementing this in foreseeable future because there are so many options already that adding one more could just confuse people, and more importantly because checking file existence beforehand is so easy. The example below shows how to
check does output file exists using Bash shell script:

output=outout.xml
if [ -e $output ]; then
    echo 'Cannot run tests because output file alreay exists'
else
    pybot --output $output my_tests.txt
fi

Another possibility is using --TimestampOutputs command line option or otherwise
creating unique output file names.


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

Reply via email to