Skip to content

Commit

Permalink
Switch to GitHub actions for E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stevesoltys committed Sep 27, 2023
1 parent ca0eb5c commit bdfef12
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ android {
androidTest {
java.srcDirs += "$projectDir/src/sharedTest/java"
}
testLogging {
exceptionFormat = 'full'
}
}

signingConfigs {
Expand Down Expand Up @@ -184,6 +181,12 @@ configurations {
}
}

tasks.withType(Test) {
testLogging {
exceptionFormat = 'full'
}
}

tasks.register('provisionEmulator', Exec) {
group("emulator")

Expand Down

0 comments on commit bdfef12

Please sign in to comment.