We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I encountered an issue with this gem that running require 'rspec/core' before loading user's RSpec configuration will cause the following warning:
require 'rspec/core'
irb: warn: can't alias context from irb_context.
ci_logger/lib/ci_logger/rspec_formatter.rb
Line 1 in fbec99e
To reproduce this, try the following command with this gem:
$ bin/rails c -e test Loading test environment (Rails 7.0.4) irb: warn: can't alias context from irb_context. irb(main):001:0>
I think this is a same issue with as follows, but I don't know how to workaround this on ci_logger gem.
require: false
So, can you please fix this in some appropriate way @willnet? This issue is also occurring in the Rails app of the company we participate in.
The text was updated successfully, but these errors were encountered:
lazy load rspec-core
3e402c5
Fix #3
Successfully merging a pull request may close this issue.
I encountered an issue with this gem that running
require 'rspec/core'
before loading user's RSpec configuration will cause the following warning:ci_logger/lib/ci_logger/rspec_formatter.rb
Line 1 in fbec99e
To reproduce this, try the following command with this gem:
I think this is a same issue with as follows, but I don't know how to workaround this on ci_logger gem.
require: false
to Gemfile example sj26/rspec_junit_formatter#101require: false
to Gemfile example NoRedInk/rspec-retry#123So, can you please fix this in some appropriate way @willnet? This issue is also occurring in the Rails app of the company we participate in.
The text was updated successfully, but these errors were encountered: