Phil Pirozhkov

Results 733 comments of Phil Pirozhkov

@jfelchner This build fails since it's not just a text file, it's a runnable scenario. I'll be happy to lend a hand with this if you get stuck with anything.

Would something like this be sufficient for you @gaganawhad ? ```ruby after do |example| instance_variables.reject { |v| v =~ /@__/ }.each { |v| puts "#{v}: #{instance_variable_get(v)}" } end ``` It...

That's very interesting, @mikebaldry. Do you mind to share your findings?

@WoolenWang Can you figure out the difference between the code @benoittgt provided and yours to understand why yours fails and the script provided provides correct output? A pull request that...

You're correct: > Location and description filters have priority over tag filters since they express a desire by the user to run specific examples So, as I understand you would...

Do you suggest a `--no-backtrace` option to override a project-level `--backtrace` just like `--no-color`/`--no-profile` do? You may start [here](https://github.com/rspec/rspec-core/blob/dd3b2abe63b0dbd4c5c4131275a858d63cddab0e/lib/rspec/core/option_parser.rb#L133) and draw some inspiration [here](https://github.com/rspec/rspec-core/blob/dd3b2abe63b0dbd4c5c4131275a858d63cddab0e/lib/rspec/core/option_parser.rb#L150) for the start if you would...

Are you still up to hack on this @cheerfulstoic ?

Since 2.7 is out, I've opened #2688 and it failed hard https://ci.appveyor.com/project/rspec/rspec-core/builds/30139185 Any volunteers to move this further?

After two years, a whole hundred PRs, I believe it’s a good moment for a major release! 🙌

I wonder what [this](https://github.com/teamcapybara/capybara#asynchronous-javascript-ajax-and-friends) means exactly: > Capybara waits upon failed predicates/assertions > Capybara's RSpec matchers, however, are smart enough to handle either form. As you say, "it would sometimes...