| Pavel Sturc Let's use this as a name for the configuration file created by Jenkins:
integration-test-mobile-services.json
It has to be located under:
aerogear-android-sdk/core/src/debug/assets
And the command to run this test case is (for now):
./gradlew clean :core:testDebug --tests org.aerogear.mobile.core.IntegrationTestSuite
Interestingly enough, ee have to specify ":core:" because otherwise Gradle will search with auth too and the command will fail:
$ ./gradlew testDebug --tests org.aerogear.mobile.core.IntegrationTestSuite |
|
> Task :auth:compileDebugJavaWithJavac |
Note: /Users/jgallaso/Projects/aerogear/aerogear-android-sdk/auth/src/main/java/org/aerogear/mobile/security/checks/EmulatorCheck.java uses or overrides a deprecated API. |
Note: Recompile with -Xlint:deprecation for details. |
Note: Some input files use unchecked or unsafe operations. |
Note: Recompile with -Xlint:unchecked for details. |
|
> Task :auth:compileDebugUnitTestJavaWithJavac |
Note: Some input files use or override a deprecated API. |
Note: Recompile with -Xlint:deprecation for details. |
Note: /Users/jgallaso/Projects/aerogear/aerogear-android-sdk/auth/src/test/java/org/aerogear/mobile/auth/authenticator/OIDCAuthenticatorImplTest.java uses unchecked or unsafe operations. |
Note: Recompile with -Xlint:unchecked for details. |
|
|
FAILURE: Build failed with an exception. |
|
* What went wrong: |
Execution failed for task ':auth:testDebugUnitTest'. |
> No tests found for given includes: [org.aerogear.mobile.core.IntegrationTestSuite](--tests filter)
|
|