-
Notifications
You must be signed in to change notification settings - Fork 375
New issue
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
test:Migrate sidekiq tests to RSpec #1092
Conversation
07cf861
to
9acdc41
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work here! The migration from test (minitest) => spec (rspect) itself LGTM.
One small thing, I noticed in the circleci output that we're still running test:sidekiq
in a few places in the Rakefile
. Such as:
Line 323 in 9acdc41
sh 'bundle exec appraisal contrib rake test:sidekiq' |
I think we will need to update the Rakefile
to spec:sidekiq
to make sure these Rspec tests run in the builds.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like there's still one left, but after that's updated should be good to go
Line 201 in 80b9bd2
sh 'bundle exec appraisal contrib-old rake test:sidekiq' |
also for some reason a test flaked so good to repush anyway?
Thank you @ericmustin! Everything should be addressed. We have two fixes for recent flaky tests: #1103 and #1091. #1091 has been merged, so I rebase this branch so that error doesn't come back. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm 👍
This PR migrates our existing
minitest
Sidekiq tests toRSpec
.There's not much else say, to be honest 🙂.