-
Notifications
You must be signed in to change notification settings - Fork 9.8k
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
tests: add mix version for snapshot e2e case #15013
tests: add mix version for snapshot e2e case #15013
Conversation
5994d41
to
b12a1dd
Compare
Codecov Report
@@ Coverage Diff @@
## main #15013 +/- ##
==========================================
- Coverage 74.87% 74.65% -0.22%
==========================================
Files 415 415
Lines 34288 34288
==========================================
- Hits 25672 25597 -75
- Misses 6994 7054 +60
- Partials 1622 1637 +15
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
b12a1dd
to
5954ce2
Compare
5954ce2
to
c26716d
Compare
any update? |
sorry for delay , I updated this pls have a look ! |
c26716d
to
f41410e
Compare
This PR is far lag behind the main branch, please rebase this PR in case there are any potential conflicts |
f41410e
to
6d703cc
Compare
done, @ahrtr |
tests/e2e/etcd_mix_versions_test.go
Outdated
if err != nil { | ||
t.Fatalf("failed to start etcd cluster: %v", err) | ||
require.NoError(t, err, "failed to start etcd cluster: %v", err) | ||
} |
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.
Please change
if err != nil {
require.NoError(t, err, "failed to start etcd cluster: %v", err)
}
to
require.NoError(t, err, "failed to start etcd cluster: %v", err)
Note that this comment applies to the following couple of places.
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.
@ahrtr done
6d703cc
to
2999076
Compare
Signed-off-by: WangXiaoxiao <1141195807@qq.com>
2999076
to
d7f6c64
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.
LGTM
Thank you @halegreen
fix issue #14807
Signed-off-by: WangXiaoxiao 1141195807@qq.com
Please read https://github.com/etcd-io/etcd/blob/main/CONTRIBUTING.md#contribution-flow.