Closed entrity closed 2 years ago
This may just be a matter of needing to specify a minimum version for rspec-core in the RspecQ gemspec file. I started out on rspec 3.4.4, and non_example_failure
(used by RspecQ) doesn't show up until 3.6. Bumping my rspec version to 3.6 resulted in the unknown-format error described above.
After bumping my rspec to 3.9, my execution of rspecq
appears to succeed. (At least the worker runs, but I'm still encountering some bumps. Haven't begun diagnosing them.)
I have not gotten rspecq to run successfully. When I execute
bundle exec rspecq -b mybuild -w myworker
, I get the following error message and stack.I'm on rspecq 0.7.2 and rspec-core 3.4.4.
It looks like
rspecq/worker.rb
is trying to pass formatter instances toRSpec.configuration.add_formatter
, but downstream from that function, it appears thatRSpec::Core::Formatters::Loader#custom_formatter
expects either a string or a class. Am I reading this correctly?