Executing core unit tests on CircleCI

This commit is contained in:
ByteHamster 2018-05-27 19:30:01 +02:00
parent fe92c98661
commit 7e59ac0e75
2 changed files with 10 additions and 1 deletions

View File

@ -21,7 +21,7 @@ jobs:
- v1-android- - v1-android-
- run: - run:
command: ./gradlew assembleDebug -PdisablePreDex command: ./gradlew assembleDebug :core:testPlayDebugUnitTest -PdisablePreDex
no_output_timeout: 1800 no_output_timeout: 1800
- store_artifacts: - store_artifacts:

View File

@ -84,6 +84,15 @@ dependencies {
} }
tasks.withType(Test) {
testLogging {
exceptionFormat "full"
events "skipped", "passed", "failed"
showStandardStreams true
displayGranularity 2
}
}
allprojects { allprojects {
gradle.projectsEvaluated { gradle.projectsEvaluated {
tasks.withType(JavaCompile) { tasks.withType(JavaCompile) {