Docker - Android App Tests #13
This file contains 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
name: Docker Android Tests Workflow | |
env: | |
TAGS: "android_mobile_test" | |
USING_DOCKER: 'True' | |
on: | |
schedule: | |
- cron: '0 22 * * *' | |
workflow_dispatch: | |
inputs: | |
tags: | |
description: Gherkin Tags | |
required: true | |
default: android_mobile_test | |
jobs: | |
scheduled-regression: | |
if: github.event_name == 'schedule' | |
strategy: | |
max-parallel: 1 | |
fail-fast: false | |
matrix: | |
include: | |
- name: Android Mobile | |
tags: 'android_mobile_tests' | |
config_file: ./configs/android_mobile_BS.json | |
html_report: android-mobile | |
testrail_configuration_name: 'Samsung Galaxy S23 Ultra' | |
name: ${{ matrix.name }} - Regression | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup dependencies | |
run: | | |
sh install.sh | |
- name: Run All Tests | |
run: | | |
env | |
source $HOME/.bp-venv/bin/activate | |
python -m pytest -v --driver Appium --selenium-host '${{secrets.BROWSERSTACK_API_USERNAME}}:${{secrets.BROWSERSTACK_ACCESS_KEY}}@hub-cloud.browserstack.com' \ | |
--variables ${{ matrix.config_file }} --tags="${{ matrix.tags }}" \ | |
--html=report.html \ | |
--self-contained-html \ | |
- name: Upload HTML run report in the Artifacts Folder | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.html_report }} | |
path: | | |
./*.html | |
./output/ | |
./assets/ | |
if: ${{ always() }} | |
docker-manual-android-run: | |
if: github.event_name != 'schedule' | |
name: Manual - ${{ inputs.tags }} | |
runs-on: macos-latest | |
steps: | |
- name: Validate Input Parameter | |
id: validate_input | |
run: | | |
if [[ -z "${{ github.event.inputs.tags }}" ]]; then | |
echo "Invalid input: 'tags' is required but not provided." | |
exit 1 | |
fi | |
- name: Setup Python | |
id: setup_python | |
if: steps.validate_input.outcome == 'success' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Check out code | |
id: co_code | |
if: steps.setup_python.outcome == 'success' | |
uses: actions/checkout@v4 | |
- name: Install and Run Appium Server | |
id: setup_appium | |
if: steps.co_code.outcome == 'success' | |
run: | | |
npm install -g appium | |
appium --log-level info & | |
sleep 5 | |
appium -v | |
- name: Enable KVM | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
# - name: AVD cache | |
# uses: actions/cache@v4 | |
# id: avd-cache | |
# with: | |
# path: | | |
# ~/.android/avd/* | |
# ~/.android/adb* | |
# | |
- name: create AVD and generate snapshot for caching | |
# if: steps.avd-cache.outputs.cache-hit != 'true' | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 29 | |
force-avd-creation: false | |
emulator-options: -no-window -gpu -grpc-use-jwt swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: false | |
script: echo "Generated AVD snapshot for caching." | |
- name: start emulator | |
id: start_emulator | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 29 | |
force-avd-creation: false | |
emulator-options: -no-snapshot-save -no-window -grpc-use-jwt -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
disable-animations: true | |
- name: Setup dependencies | |
id: setup_dependencies | |
if: steps.co_code.outcome == 'success' | |
run: | | |
sh install.sh | |
- name: Setup Java | |
id: setup_java | |
if: steps.co_code.outcome == 'success' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Run Env Job Tests | |
id: run_manual_job | |
if: steps.start_emulator.outcome == 'success' | |
run: | | |
TAGS="${{ github.event.inputs.tags }}" | |
env | |
source $HOME/.bp-venv/bin/activate | |
python -m pytest -v --driver Appium --selenium-host 'localhost' --selenium-port '4723' \ | |
--variables './configs/android_mobile_docker.json' | |
--tags="$TAGS" \ | |
--html=report.html \ | |
--self-contained-html \ | |
- name: Upload HTML run report in the Artifacts Folder | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pytest-results | |
path: | | |
./*.html | |
./output/ | |
./assets/ | |
if: ${{ always() }} |