Skip to content

Commit

Permalink
troubleshoot test
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAZimmerly committed Jan 6, 2025
1 parent 04a9fd4 commit 5d87bd4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ buildscript {
}
plugins {
id("org.jetbrains.dokka") version "${dokka_version}"
id("org.gradle.test-retry") version "1.5.2"
}
apply plugin: 'com.android.library'
apply plugin: 'org.jetbrains.kotlin.android'
Expand Down Expand Up @@ -75,6 +76,10 @@ tasks.withType(Test).configureEach {
showStandardStreams = true // Show logs from the test's stdout/stderr
}
finalizedBy jacocoTestReport
retry {
maxRetries.set(5)
failOnPassedAfterRetry.set(false)
}
}

tasks.withType(Test) {
Expand Down

0 comments on commit 5d87bd4

Please sign in to comment.