My requirement is to run a single rspec file at the end of the suite after all the other rspecs are run. Since the spec - specA - is changed when other tests are run in parallel with it.
I have tried --single and --isolate
parallel_rspec -n 4 Spec/**/*.rb --isolate Spec/specA.rb
or
parallel_rspec -n 4 Spec/**/*.rb --single Spec/specA.rb
These seem to run in the same process specified. Or alternatively is there any way to call parallel_rspec twice without overwriting the previous exection ? Calling parallel_rspec twice seems to give only the second run's result at the end.