How can I run all my selenium tests sequentially in C#?

What tools exist for parallelizing my Rails tests?

  • I have a multicore computer, but all my rspec and cucumber tests run sequentially.  It would be nice if something could split them up and run them in parallel and then assemble the results.  Are there any tools like this?

  • Answer:

Christopher Thorpe at Quora Visit the source

Was this solution helpful to you?

Other answers

Check out TDDium - https://www.tddium.com. It's a SaaS service exactly for that.

Girts Graudins

https://github.com/ngauthier/hydra Hydra is a distributed testing framework. It allows you to distribute your tests locally across multiple cores and processors, as well as run your tests remotely over SSH Hydra’s goals are to make distributed testing easy. So as long as you can ssh into a computer and run the tests, you can automate the distribution with Hydra. https://github.com/grosser/parallel_tests Speedup Test::Unit + RSpec + Cucumber by running parallel on multiple CPUs.

Allen Wei

You can also check Testributor. http://www.testributor.com It runs your tests in parallel using Docker on your hardware if you do not want to pay for cloud resources.This may help you if you want to run your tests using multiple cores in different computers.

Spyros Kz Bril

Though I haven't used it, it turned about #1 on google for parallelizing rspec. http://saucelabs.com/blog/index.php/2010/03/a-bit-of-sugar-and-parallelism-for-rails-and-rspec/ Essentially it's using a multi-database test environment to run specs with their own environment to avoid conflicts. Might be worth checking out.

Chris Boertien

Suchit Puri

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.