File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 2323 - name : Grant execute permission for gradlew
2424 run : chmod +x gradlew
2525 - name : All tests excluding iosTest
26- run : ./gradlew allTests -x iosTest
26+ run : ./gradlew cleanTest test -x compileDebugUnitTestKotlinAndroid -x compileReleaseUnitTestKotlinAndroid -x iosTest
2727 - name : Run Android Instrumented Tests
2828 uses : reactivecircus/android-emulator-runner@v2
2929 with :
Original file line number Diff line number Diff line change @@ -12,10 +12,14 @@ buildscript {
1212 jcenter()
1313 google()
1414 gradlePluginPortal()
15+ maven {
16+ url = uri(" https://plugins.gradle.org/m2/" )
17+ }
1518 }
1619 dependencies {
1720 classpath(" com.android.tools.build:gradle:3.6.1" )
1821 classpath(" de.undercouch:gradle-download-task:4.0.4" )
22+ classpath(" com.adarshr:gradle-test-logger-plugin:2.0.0" )
1923 }
2024}
2125
@@ -43,12 +47,14 @@ subprojects {
4347
4448 group = " dev.gitlive"
4549
46-
50+ apply (plugin= " com.adarshr.test-logger" )
51+
4752 repositories {
4853 mavenLocal()
4954 mavenCentral()
5055 google()
5156 jcenter()
57+
5258 }
5359
5460 var shouldSign = true
You can’t perform that action at this time.
0 commit comments