Skip to content

Tag filtering with Spork on

gitlab-qa-bot requested to merge github/fork/monocle/master into master

Created by: monocle

When trying to run RSpec with the tag option

rspec spec --tag mytag

Spork doesn't receive the filter option. I had to modify ConfigurationOptions#drb_argv to include

if options[:filter]
  options[:filter].each_pair do |k, v|
    argv << "--tag" << k.to_s
  end
end

Merge request reports