Skip to content

Commit

Permalink
rename gradle task "android" to "android-tests"
Browse files Browse the repository at this point in the history
I hope it's better-readable
  • Loading branch information
asolntsev committed Jun 28, 2024
1 parent b7ae38d commit 79442bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
profile: pixel_3_xl
disable-animations: true
emulator-options: -no-snapshot -no-window -no-boot-anim -camera-back emulated -camera-front emulated -gpu swiftshader_indirect
script: ./gradlew android --info
script: ./gradlew android-tests
- uses: actions/upload-artifact@v4
if: failure()
with:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ How to test mobile application with Selenide and Appium
Alternatively, you can start emulator from command line:
> emulator -avd Pixel_4_API_28_1
* And finally, run the test:
> ./gradlew test
* And run the test:
> ./gradlew android-tests
Thanks to [Maryna Kolesnik](https://github.com/mkpythonanywhereblog) for CalculatorTest example!
Her original sample can be found [here](https://gist.github.com/mkpythonanywhereblog/d1fb3dca2e66146f519f)
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ test {
include 'nope/**/*'
}

tasks.register("android", Test) {
tasks.register("android-tests", Test) {
include 'org/selenide/examples/appium/**/*'
}
}

0 comments on commit 79442bc

Please sign in to comment.