Sidekiq connecting logs in test
Sidekiq 7.0.6 connecting to Redis with options
If you have these all over your Rails test logs, here is how you can disable them for test.
In test/test_helper.rb
, add the following:
Sidekiq.logger.level = Logger::WARN
Now your test logs will be clean.
This took me a while to figure out, hope it helps you if you're googling around for the solution as well.