Teamcity output reports
I have a custom msbuild script that does the following :
Reshaper (inspectcode)
Duplicates
Stylecop
NCrunch
MSTest
Build
Most of the above produces output, mainly XML.
I'm looking to get the following from Teamcity :
1.) Displaying this XML output in some readable manner / report.
2.) For the likes of Resharper / Style cop analysis I only want to show the new output since the last output.
I have achieved the above using the inbuilt Teamcity runners, but I like the control that MSBuild gives me (CI Independence / Can run when off the network etc)
Any suggestions ?
Please sign in to leave a comment.
The XML report processing functionality sounds like it might work for my MSTest output (.trx)
http://confluence.jetbrains.com/display/TCD8/XML+Report+Processing
I think I can answer my own question.
It looks like service messages will do what I need.
Example :
<Message Text=”##teamcity[importData type='mstest' path='TestResults.trx']“/>
For anyone else who has the same questions :
http://confluence.jetbrains.com/display/TCD8/Build+Script+Interaction+with+TeamCity#BuildScriptInteractionwithTeamCity-ImportingXMLReports