vote up 5 vote down star
2

I have a Nant build file which executes NUnit after compiling the dll's. I am executing the NAnt build file with a task in CruiseControl. So NAnt is running the tests not CruiseControl.

How do I configure it so that the CruiseControl web dashboard can be used to view the NUnit output ?


This fixed it:

<publishers>
    <merge>
    	<files>
    	         <file>build\*.test-result.xml</file>
    	</files>
    </merge>
    <xmllogger />
 </publishers>
flag

2 Answers

vote up 3 vote down check

You want to use the merge capabilities of CruiseControl to grab your nunit XML output. Thie is the situation my company has going, and it seems to work fairly well. Here is a config snippet (This goes in the <publishers> element in ccnet,config):

 <merge>
     <files>
         <file><path to XML output>\*.xml</file>
     </files>
 </merge>

Hope this works for you.

link|flag
I see in server log it merges the file, but still I see no tests run if I select NUnit Details link in webdashboard. – HollyStyles Oct 2 '08 at 12:57
Important to place <xmllogger /> after the <merge> element within the <publishers> element in ccnet.config. – HollyStyles Oct 2 '08 at 13:15
Excellent point....I would like to see the CCNet config files become a little more forgiving of these things...or at least provide better feedback when things don't go right. – ckramer Oct 3 '08 at 22:38
vote up 0 vote down

Make sure that in the the dashboard.config file you have a valid xsl file in the section we run nunit with ncover and use this xsl\NCoverExplorer.xsl I think that the xsl file we took from the ncover install somewhere.

also make sure that this line is correct:

Then make sure in the ccnet.config file that under the section you have the xml output from the nunit test listed.

Also make sure you put the xsl file in the xsl folder under webdashboard.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.