How to setup Jenkins with JUnit
We have a JUnit test suite that we usually run from Eclipse. We have recently started a process of trying to get a better development environment. As part of this we have started building our project in Jenkins . We would also like it if it was possible to run the JUnit test suite during our build. To do this I think we need a way to execute the test suite from command line so that we can integrate them in Jenkins and parse their output. How can we set up Jenkins to run our tests? Michael Laffargue You could create a junit ant task during your build and let Jenkins run that task Here are some