Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running parallel junit tests on multiple remote machines

I'm working on a pretty large project with junit tests running several hours. Is there a way to distribute unit tests to different machines and run these tests in parallel?

like image 658
user833970 Avatar asked May 21 '12 18:05

user833970


1 Answers

What about a build runner like Jenkins and a maven or gradle like build setup.

Possibly something like http://test-load-balancer.github.com/ as a distributed testrunner is not available from gradle at the moment http://forums.gradle.org/gradle/topics/distributed_testing

like image 107
Joey Avatar answered Sep 18 '22 10:09

Joey