exporting tests result from a build
Hi , i would like to know if it's possible to pull all test results from a specific build in teamcity after the build completed
the motivation is to pipe the tests results to an external gui intefrace which visualize the results and reduces the cost of analyzing large build logs (endless scrolling :\)
i though about using a node js application which will listen to requests with the desired object .
any clue on which part of teamcity api might give me the solution ?
thanks in advance!
Please sign in to leave a comment.
Hi,
We have the reference in our REST API documentation: https://confluence.jetbrains.com/display/TCD18/REST+API#RESTAPI-BuildproblemsTestsTestsandBuildproblems
This said, this is the REST API. You can request the information from it but it will not provide you with a hook for notifications when it's done.
Otherwise, you could try to implement your own plugin that hooks up into the appropriate build ended event via a custom notifier: https://confluence.jetbrains.com/display/TCD18/Custom+Notifier