In the pipeline script using below command to generate test app
sh('./gradlew assembleDebugAndroidTest')
As I understand this will
assembleDebugAndroidTest - Assembles the android (on device) tests for the Debug build.
for all the scripts inside /src/androidTest
but I have a folder like
/scr/androidTest/com/company/android/TestV1 - has 3 script /scr/androidTest/com/company/android/TestV2 - has 4 script
Now I want test app with only /scr/androidTest/com/company/android/TestV2
how can we select this during the app building and ensure only those cases are executed in my pipeline?
I want test app with only /scr/androidTest/com/company/android/TestV2
how can we select this during the app building and ensure only those cases are executed in my pipeline?