Last active
July 26, 2019 14:12
-
-
Save DoguD/1b4793b6cc7f1adf99c02b8e849e813b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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