-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
build: use make testSuite
to ensure all testSuites enabled
#11627
Conversation
/run-all-tests |
/run-all-tests |
Codecov Report
@@ Coverage Diff @@
## master #11627 +/- ##
================================================
- Coverage 81.4775% 81.2599% -0.2177%
================================================
Files 428 426 -2
Lines 92380 92054 -326
================================================
- Hits 75269 74803 -466
- Misses 11739 11877 +138
- Partials 5372 5374 +2 |
/run-all-tests |
1 similar comment
/run-all-tests |
/run-all-tests |
/run-unit-test |
@@ -37,6 +37,6 @@ func (s *testBackoffSuite) TearDownTest(c *C) { | |||
func (s *testBackoffSuite) TestBackoffWithMax(c *C) { | |||
b := NewBackoffer(context.TODO(), 2000) | |||
err := b.BackoffWithMaxSleep(boTxnLockFast, 30, errors.New("test")) | |||
c.Assert(err, NotNil) | |||
c.Assert(err, IsNil) |
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.
why this test result is changed?
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.
This test case fails but never runs once before :(
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
How about cherry-pick this commit to the release branch? |
@SunRunAway Please follow CONTRIBUTING.md to refine the PR title. |
make testSuite
to ensure all testSuites enabledmake testSuite
to ensure all testSuites enabled
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
/run-all-tests |
cherry pick to release-2.1 failed |
cherry pick to release-3.0 in PR #11685 |
What problem does this PR solve?
use
make testSuite
to ensure all testSuites enabledWhat is changed and how it works?
add a bash script in ./tools/check/check_testSuite.sh
Check List
Tests
Code changes
Side effects
Related changes