File tree Expand file tree Collapse file tree 4 files changed +2
-15
lines changed
gradle/build-logic/src/main/kotlin
lib/feature/daita/impl/src/androidTest/kotlin/net/mullvad/mullvadvpn/feature/daita/impl Expand file tree Collapse file tree 4 files changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ jobs:
151151 - name : Prepare build tasks
152152 id : build-tasks
153153 run : |
154- tasks=":app:assembleOssProdDebug assembleOssProdAndroidTest assembleAllAndroidTest :test:mockapi:assemble"
154+ tasks=":app:assembleOssProdDebug assembleOssProdAndroidTest :test:mockapi:assemble"
155155 if [[ "${{ needs.prepare.outputs.E2E_TEST_REPEAT }}" != '0' ]]; then
156156 tasks+=" :app:assemblePlayStagemoleDebug :test:e2e:assemble"
157157 fi
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ plugins {
3030 alias(libs.plugins.kotlin.ksp)
3131 alias(libs.plugins.compose)
3232 alias(libs.plugins.baselineprofile)
33- // alias(libs.plugins.mullvad.android.library.instrumented.test)
3433 alias(libs.plugins.mullvad.unit.test)
3534 id(" de.mannodermaus.android-junit5" )
3635 id(" net.mullvad.rust-android" )
@@ -160,7 +159,7 @@ android {
160159 sourceSets {
161160 getByName(" main" ) { assets.srcDirs(relayListDirectory, changelogAssetsDirectory) }
162161 getByName(" androidTest" ) {
163- java.srcDirs(" ${project( " :lib:feature:daita:impl " ) .projectDir} /src /androidTest/java " )
162+ java.srcDirs(" ${rootProject .projectDir} /** /androidTest/kotlin " )
164163 }
165164 }
166165
Original file line number Diff line number Diff line change @@ -37,17 +37,5 @@ class AndroidLibraryInstrumentedTestPlugin : Plugin<Project> {
3737 " androidTestImplementation" (libs.findLibrary(" junit5.android.test.runner" ).get())
3838 }
3939 }
40-
41- target.tasks.register(" assembleAllAndroidTest" ) {
42- dependsOn(
43- try {
44- target.tasks.getByName(" assembleAndroidTest" )
45- } catch (e: UnknownTaskException ) {
46- // Modules with flavors will not have normal android test tasks so we test with
47- // ossProdDebug
48- target.tasks.getByName(" assembleOssProdAndroidTest" )
49- }
50- )
51- }
5240 }
5341}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments