I'm looking to run automated NUnit tests for a C# application, nightly and on each commit to svn.
Is this something that Jenkins-CI can do?
Is there an online tutorial or how-to document which documents a similar setup that I can look at?
|
I'm looking to run automated NUnit tests for a C# application, nightly and on each commit to svn. Is this something that Jenkins-CI can do? |
|||||||
|
|
I needed to do exactly what you do, here's how I setup Jenkins to do this:
You could also run the command from within Visual Studio or as part of you local build process. Here's two blog posts I used for reference. I didn't find any that fitted my requirements exactly: |
|||||
|
|
Jenkins does have plugins that will support that. The exact configuration is going to depend quite a bit on your project setup. There are specific plugins for nUnit, MSBuild,nAnt etc. Start by looking at the plugins page, but it shouldn't be terribly difficult to figure out. |
|||
|
|
|
This works nicely, I've set this up before. Configure NUnit to output the results to an XML file and configure the NUnit Jenkins Plugin to consume this XML file. The results will be available on the dashboard. Now, how you invoke NUnit is up to you. The way we did it was: Jenkins job executes NAnt target executes NUnit test suite. You can configure Jenkins jobs to run on commit and/or scheduled at a certain time. |
|||
|
|