-
Notifications
You must be signed in to change notification settings - Fork 104
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
feat: Support rename explaintest
to integrationtest
#2410
Conversation
Pull Request ReviewTitle: Description: This PR is related to the issue pingcap/tidb#46712. Key Changes:
Potential Problems:The renaming of the test and the test script might cause issues if there are any dependencies or references to the old name (explaintest) that were not updated. Suggestions:
|
explaintest
to integrationtest
explaintest
to integrationtest
Pull Request ReviewTitle
Description
Changes
Potential Problems
Suggestions
|
Pull Request Review SummaryTitle
Description
Key Changes
Potential Problems
Suggestions
Diffdiff --git a/jenkins/pipelines/ci/tidb/tidb_ghpr_check.groovy b/jenkins/pipelines/ci/tidb/tidb_ghpr_check.groovy
index 654995ca4..066472ba1 100644
--- a/jenkins/pipelines/ci/tidb/tidb_ghpr_check.groovy
+++ b/jenkins/pipelines/ci/tidb/tidb_ghpr_check.groovy
@@ -225,7 +225,7 @@ try {
}
}
}
- tests["explaintest"] = {
+ tests["integrationtest"] = {
run_with_pod {
deleteDir()
unstash 'tidb'
@@ -234,7 +234,7 @@ try {
sh """
go version
make checklist
- make explaintest
+ make integrationtest
"""
}
}
... |
Key ChangesThe pull request renames the
Potential Problems
Fixing Suggestions
|
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
/approve
[LGTM Timeline notifier]Timeline:
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: wuhuizuo The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/hold |
/unhold |
for pingcap/tidb#46712