[~psturc] Let's use this as a name for the configuration file created by Jenkins: bq. {{ integration-test-mobile-services.json }}
It has to be located under: bq. {{ aerogear-android-sdk/core/src/debug/assets }}
And the command to run this test case is (for now): bq. {{ ./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:
{noformat} $ ./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) {noformat} |
|