Skip to content

Commit 044ea25

Browse files
Configure test-retry plugin filter properly (#8933) (#8939)
The intent of #8825 was to retry only specified tests. The wrong parameter was configured though: ['filter' should be set][1], not 'classRetry'. [1]: https://github.com/gradle/test-retry-gradle-plugin/blob/main/README.adoc#filtering (cherry picked from commit 5495c64) Signed-off-by: Andrew Ross <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 989ab74 commit 044ea25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ subprojects {
459459
maxFailures = 10
460460
}
461461
failOnPassedAfterRetry = false
462-
classRetry {
462+
filter {
463463
includeClasses.add("org.opensearch.action.admin.cluster.node.tasks.ResourceAwareTasksTests")
464464
includeClasses.add("org.opensearch.action.admin.cluster.tasks.PendingTasksBlocksIT")
465465
includeClasses.add("org.opensearch.action.admin.indices.create.CreateIndexIT")

0 commit comments

Comments
 (0)