org.gradle.test-retry
Owner: Gradle
Mitigate flaky tests by retrying tests when they fail
https://github.com/gradle/test-retry-gradle-plugin
Sources: https://github.com/gradle/test-retry-gradle-plugin.git
Version 1.3.0
1.3.0
Created 29 June 2021.
Mitigate flaky tests by retrying tests when they fail
Using the plugins DSL:
plugins {
id("org.gradle.test-retry") version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.gradle:test-retry-gradle-plugin:1.3.0")
}
}
apply(plugin = "org.gradle.test-retry")
Using the plugins DSL:
plugins {
id "org.gradle.test-retry" version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gradle:test-retry-gradle-plugin:1.3.0"
}
}
apply plugin: "org.gradle.test-retry"