parallel_rspec
parallel_rspec copied to clipboard
Run individual RSpec examples efficiently in parallel across N cores
Hello! I've been using this Gem for a while and it works like a charm, good job! However, I'm trying to use the [SimpleCov gem](https://github.com/simplecov-ruby/simplecov) to get the Coverage of...
``` rails db:parallel:prepare RAILS_ENV=test rails aborted! Don't know how to build task 'db:parallel:prepare' (See the list of available tasks with `rails --tasks`) Did you mean? parallel:prepare ```
When `aggregate_failures` is used in an example, regular rspec output will print a nested list of all the failures. With parallel_rspec, we get the actual `RSpec::Expectations::MultipleExpectationsNotMetError` error itself. That's meant...