|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
3 | corrected spelling | ||
|
Here's what I came up with How can I merge in the test report? First you'll need to get mbunit to generate both an XML and HTML report. The Command line arguments look like this
this will generate the reports into a dir called reports and the file will be called mbunit.xml and mbunit.html next we want to add these files as artifacts on the build
the last step is to tell teamcity to add it as a tab for the build find the .BuildServer\config\main-config.xml and add this line (on windows this is in c:\Documents and Settings\, on linux it was in teh the /root dir)
How can I display "Tests failed: 1 (1 new), passed: 3049" for the build? TeamCity looks for a file called teamcity-info.xml where you can stick messages in to be displayed. The Actual test count is actually just plain text. I think you can just add the file as an artifact but I've also got it in the root dir of the build. in NAnt you'll want to use this command to do an XSLT on the MBUnit XML Report
the actual xsl looks like this. (Note: that the { and } are reserved in xsl so we have to use params)
This will give you a file that looks like this
|
||||
|
2 | added 27 characters in body | ||
|
Here's what I came up with How can I merge in the test report? First you'll need to get mbunit to generate both an XML and HTML report. The Command line arguments look like this
this will generate the reports into a dir called reports and the file will be called mbunit.xml and mbunit.html next we want to add these files as artifacts on the build
the last step is to tell teamcity to add it as a tab for the build find the .BuildServer\config\main-config.xml and add this line (on windows this is in c:\Documents and Settings\, on linux it was in teh /root dir)
How can I display "Tests failed: 1 (1 new), passed: 3049" for the build? TeamCity looks for a file called teamcity-info.xml where you can stick messages in to be displayed. The Actual test count is actually just plain text. I think you can just add the file as an artifact but I've also got it in the root dir of the build. in NAnt you'll want to use this command to do an XSLT on the MBUnit XML Report
the actual xsl looks like this. (Note: that the { and } are reserved in xsl so we have to use params)
This will give you a file that looks like this
Note: I've having problems with the {build.number} being dropped during the XSLT |
||||
|
1 |
|
||
