KK has a junit maven plugin for running tests distributed if your build uses Maven...
Kristian Rosenvold has been working on adding support for KK's feature into Maven's Surefire plugin which would make that available as an extension to surefire rather than being a different plugin (with all the issues that arise when a plugin other than surefire/failsafe is responsible for running the java tests) Another approach you could take is to use KK's remoting framework to run the tests across a cluster by telling JUnit/TestNG to run the tests in parallel... should work if you set up a custom runner... that would give you the features of KK's junit maven plugin without being tied to the plugin per se. -Stephen On 28 May 2012 19:54, Harsh Kumar <harshkum...@gmail.com> wrote: > The tests are written in JAVA. I appreciate the help. Just in-case if any of > you are aware of any tool which can help please do let me know. > > Thanking all in anticipation. > > Regards, > Harsh Kumar > > > > On Tue, May 29, 2012 at 12:12 AM, Mark Waite <markwa...@yahoo.com> wrote: >> >> If your tests are written in Python, you could consider using py.test and >> the xdist plugin to spread the work among multiple machines. >> >> Other languages have other techniques for test discovery and test >> distribution, but as Sami said, the test distribution needs to know more >> about your tests than I suspect can be reasonably captured in a general >> purpose plugin. >> >> Mark Waite >> >> ________________________________ >> From: Harsh Kumar <harshkum...@gmail.com> >> To: jenkinsci-users@googlegroups.com >> Sent: Monday, May 28, 2012 12:29 PM >> Subject: Re: Run Tests Distributed >> >> Hi, >> I intend to do parallel runs of my tests in multiple machines. >> For eg, i have a test suite of 10,000 tests. I have 100 test machines and >> hence if i could divide these 10,000 tests among 100 machines and run that >> would save me time. >> >> Do you think there is a plug-in to do something similar or do i need to >> write one. >> >> >> Regards, >> Harsh Kumar >> >> >> On Mon, May 28, 2012 at 11:22 PM, Sami Tikka <sjti...@gmail.com> wrote: >> >> Of course, you can split the tests into groups and use e.g. >> Multiconfiguration job to run the multiple test sets in multiple slaves at >> the same time. >> >> -- Sami >> >> Harsh <harshkum...@gmail.com> kirjoitti 28.5.2012 kello 11.43: >> >> > Hi, >> > I have UI Automated Tests which i intend to run in parallel and need a >> > plug-in for that. DistTest looks to run only jUnit test cases in >> > parallel. Can you suggest a plugin. >> > >> > Regards, >> > Harsh >> >> >> >> >