-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for parallel tests #123
Comments
Hi @jarommadsen. It's nice to hear you're enjoying the tool! The Use a Custom Command to Start RSpec has some examples on how to use the rspec_n places all of the burden for running rspec on the If we add some parallelization support in |
@roberts1000 I think I wasn't clear enough in my original post but the functionality I'm after is to reduce the amount of time running the same test multiple times is taking. Specifically, I'm using
Any chance this could be implemented? |
@jarommadsen Thanks for the extra info. That helps me understand better. If there's a way to pass info down to It would be more difficult to add the concept of workers directly into This part is just me "thinking-out-loud" a bit. I'm interested if you see it the same way... If someone is running a full test suite, that's already parallelized, and they have more tests/files than workers, |
Loving the tool! The only thing I want for is to be able to run them in parallel.
You mention in the README that
rspec_n
can run tests in parallel by using the -c option without showing an example but I don't think this covers what I'm after.I've installed the
parallel_rspec
gem which can run tests in parallel but what I want to do is have each retry to use a different worker.For example: I create 4 workers in
parallel_rspec
and runrspec_n
on a specific spec file. I want 4 of those attempts to use an individual worker simultaneously to cut the total runtime in half.Is there a workaround that I'm not seeing?
The text was updated successfully, but these errors were encountered: