rspec-core icon indicating copy to clipboard operation
rspec-core copied to clipboard

RSpec runner and formatters

Results 75 rspec-core issues
Sort by recently updated
recently updated
newest added

Currently bisect runner has 2 formatters: https://github.com/rspec/rspec-core/blob/main/lib/rspec/core/invocations.rb#L46-L47 Since they are not configurable, currently we can only parse the result from either stdout or monkey patch the formatter's `bisect_repro_command` method to...

### Subject of the issue I have flaky tests so in the process of creating a second test runner in CircleCI to run just the flaky tests, I've encountered this...

A few things are a bit off, e.g.: - no deprecation for multi-condition filtering usages 🤷 - no specs for `:if`/`:unless` deprecation usages - had to *flip* the `unless` condition...

Hi. I working on debian package for berkshelf-api, in debian we have rspec-\* 3.3.0 and I have problem to run testsuite because it hangs (on this line: https://github.com/berkshelf/berkshelf-api/blob/master/spec/unit/berkshelf/api/cache_builder/worker/github_spec.rb#L51, https://github.com/berkshelf/berkshelf-api/blob/master/spec/support/human_reaable.rb#L3), While...

Bug

Note: A lot of this is copied verbatim from [this sample project's readme](https://github.com/rhiknow55/rspec-metadata-leak-example) ### Subject of the issue Internally in RSpec-Core, when initializing an `Example`, an `ExampleHash` is created. Within...

Would it make sense to make `--require spec_helper` the default unless otherwise specified? It's such a common pattern.

### Subject of the issue In a custom RSpec runner I'm using, I've noticed an ever-increasing memory usage with each spec file (the same file, actually) that the runner executes....

I'm trying to track down an error in a flaky test. Unfortunately the string output presented by rspec does not display the problem. The following test should be enough to...

As discussed in https://github.com/rspec/rspec/issues/61#issuecomment-751519097 @pirj can you let me know if this is what you had in mind?

I searched around, but couldn't find a way to do it. Something like: ``` 1 example, 0 failures, 3 assertions ``` In [this question](http://stackoverflow.com/questions/6137874/show-number-of-assertions-in-rspec-output), @dchelimsky suggested to open a feature...

Feature