I need to be able to filter the features that are run on tag, like --tags ~@wip
I have forked this repo and my first attempt is as follows, borrowing the convention of ENV['CUCUMBER_OPTS'] from cucumber.rake.
https://github.com/briandunn/specjour/blob/master/lib/specjour/cucumber/runner.rb
This doesn't seem to affect the listeners, presumably because the environment of dispatch is not available. Do you have any thoughts on how something like this should be communicated to the listeners?
I need to be able to filter the features that are run on tag, like
--tags ~@wipI have forked this repo and my first attempt is as follows, borrowing the convention of
ENV['CUCUMBER_OPTS']fromcucumber.rake.https://github.com/briandunn/specjour/blob/master/lib/specjour/cucumber/runner.rb
This doesn't seem to affect the
listeners, presumably because the environment ofdispatchis not available. Do you have any thoughts on how something like this should be communicated to the listeners?