Skip to content

Instantly share code, notes, and snippets.

@DoguD
Last active July 26, 2019 14:12
Show Gist options
  • Save DoguD/1b4793b6cc7f1adf99c02b8e849e813b to your computer and use it in GitHub Desktop.
Save DoguD/1b4793b6cc7f1adf99c02b8e849e813b to your computer and use it in GitHub Desktop.
default_platform(:android)
platform :android do
desc "Do UI Tests on CircleCI"
lane :ui_test do
# Run all Tests
sh('cd .. && ./gradlew app:connectedAndroidTest')
# Run spesific Tests
# sh('cd .. && ./gradlew app:connectedAndroidTest -Pandroid.testInstrumentationRunnerArguments.package=<INSERT_YOUR_TEST_PACKAGE_HERE(com.app.myapp.emulatortests)>')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment