I am running robot framework test through teamcity build. I can get results log.html
into artifacts. But is there any plugin in teamcity for robot framework so I can populate results in projects?
update
thanks a lot ! I added py file in suite as below
class TeamCityListener():
ROBOT_LISTENER_API_VERSION = 2
def start_suite(self, name, attrs):
sys.__stdout__.write("##teamcity[testSuiteStarted name='{name}']\n".format(name=name))
print 'hi'
sys.__stdout__.flush()
And I called it from teamcity as pybot --listener TeamCityListener.py --console none test.robot
But when I run in project I see Step 1/1
and them Success
Do I have to add anything on teamcity side? Before running pybot
I'm ssh
ing into machine, maybe that's the reason?