You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to be able to use this with Guard, like it's possible with to do with parallel_rspec. However this is not currently possible with because guard passes specific options to rspec. Running guard fails with:
[1] guard(main)>
16:04:03 - INFO - Run all
16:04:03 - INFO - Running all specs
/Users/louim/.asdf/installs/ruby/2.6.8/lib/ruby/gems/2.6.0/gems/turbo_tests-1.2.4/lib/turbo_tests/cli.rb:72:in `run': invalid option: --failure-exit-code (OptionParser::InvalidOption)
from /Users/louim/.asdf/installs/ruby/2.6.8/lib/ruby/gems/2.6.0/gems/turbo_tests-1.2.4/bin/turbo_tests:11:in `<top (required)>'
from bin/turbo_tests:29:in `load'
from bin/turbo_tests:29:in `<main>'
16:04:03 - ERROR - Failed: "bin/turbo_tests -f progress -r /Users/louim/.asdf/installs/ruby/2.6.8/lib/ruby/gems/2.6.0/gems/guard-rspec-4.7.3/lib/guard/rspec_formatter.rb -f Guard::RSpecFormatter --failure-exit-code 2 spec" (exit code: 1)
Because turbo_tests choke on the options passed. It would be useful to support possing down options to Rspec via a specific flag.
The text was updated successfully, but these errors were encountered:
Would this also resolve something like passing --require spec_helper to rspec? Currently having difficulty loading require 'webmock/rspec' when running turbo_tests.
Would this also resolve something like passing --require spec_helper to rspec? Currently having difficulty loading require 'webmock/rspec' when running turbo_tests.
@OneNeptune Can you please provide a repository with reproduction? We use webmock/rspec without any issues.
I'd like to be able to use this with Guard, like it's possible with to do with
parallel_rspec
. However this is not currently possible with because guard passes specific options to rspec. Running guard fails with:Because turbo_tests choke on the options passed. It would be useful to support possing down options to Rspec via a specific flag.
The text was updated successfully, but these errors were encountered: