Status: Accepted
Owner: ----
Labels: Priority-Medium Type-Defect Target-2.8.4

New issue 1605 by tatu.ka...@eficode.com: Disrepancy with Robot API when running suites
http://code.google.com/p/robotframework/issues/detail?id=1605

It seems that not all options work the same depending if you run Robot test cases programmatically with robot.run() or suite.run().

For example if I want to disable console output:

from robot import run
from StringIO import StringIO

run('/path/to/tests.txt', stdout=StringIO())

This does not print anything to console. However:

from robot.api import TestSuiteBuilder
from StringIO import StringIO

suite = TestSuiteBuilder().build('/path/to/tests.txt')
suite.run(stdout=StringIO())

This does print console.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to