Skip to content

Commit

Permalink
Export test execution result with config (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
hieuwu authored Oct 14, 2023
1 parent 8d6b29f commit 4e96c0b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ android {
freeCompilerArgs=['-Xjvm-default=all']
}

testOptions {
unitTests.all {
testLogging {
outputs.upToDateWhen { false }
events "passed", "failed", "skipped", "standardError"
showCauses true
showExceptions true
}
}
}

defaultConfig {
def login = System.getenv("ACRA_LOGIN") ?: ""
def password = System.getenv("ACRA_PASS") ?: ""
Expand Down

0 comments on commit 4e96c0b

Please sign in to comment.