Skip to content

Commit

Permalink
New label to gradleCheckFlakyTestDetector
Browse files Browse the repository at this point in the history
Signed-off-by: Prudhvi Godithi <[email protected]>
  • Loading branch information
prudhvigodithi committed Jun 14, 2024
1 parent 31c876f commit 0552ba2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jacocoTestReport {
}
}

String version = '6.5.0'
String version = '6.5.1'

task updateVersion {
doLast {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
* compatible open source license.
*/

/** Library to detect Gradle Check flaky tests and create GitHub issue in OpenSearch repository.
@param Map args = [:] args A map of the following parameters
@param args.issueLabels <required> - GitHub labels that will be added to the issue created in OpenSearch repository.
*/

import gradlecheck.FetchPostMergeFailedTestClass
import gradlecheck.FetchPostMergeTestGitReference
import gradlecheck.FetchPostMergeFailedTestName
Expand Down Expand Up @@ -49,7 +54,7 @@ void call(Map args = [:]) {
repoUrl: "https://github.com/opensearch-project/OpenSearch",
issueTitle: "[AUTOCUT] Gradle Check Flaky Test Report for ${failedTest}",
issueBodyFile: "${failedTest}.md",
label: 'autocut,>test-failure',
label: args.issueLabels,
issueEdit: true
)
}
Expand Down

0 comments on commit 0552ba2

Please sign in to comment.