Running NUnit in Mono with Jenkins Running NUnit in Mono with Jenkins jenkins jenkins

Running NUnit in Mono with Jenkins


Seems I figured it out with a little tinkering.

I configured the jenkins job under Build and added a 'Execute shell' command of

nunit-console "$WORKSPACE/path/to/Tests.dll" 

and then later as a post build event, I picked up the resulting xml (With the NUnit plugin for jenkins) and it displays it all in the web interface.

One note of caution, this is a -really- simple project, so I don't know if that will all work under mono with more advanced tests etc.