Rspec provides the handy ability to
place focus: true
by a test to make it run in isolation. And running
$bundle exec rspec spec
works to make this functionality true
However, usage of parallel specs alone
$rake parallel:spec
or with Zeus : $zeus rake parallel:spec
does not work at all and results in the following
ignoring {:focus => true}
Why? I do not want it to be ignored!
Is there no way to run a single test or even a single file while using parallel specs? Trying to get it set up and debug errors that have to do with parallel processing, but I don't want to have to run the entire test suite to test a fix.
Specifying the file location afterwards such as
$zeus rake parallel:spec spec/features/testing_questionnaire_submission_spec.rb
also fails to work.