Functional Tests #25
Workflow file for this run
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: Functional Tests | |
on: | |
# Run by manual at this time | |
workflow_dispatch: | |
# push: | |
# branches: [ master ] | |
# pull_request: | |
# branches: [ master ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ios_test: | |
strategy: | |
fail-fast: false | |
matrix: | |
test_targets: | |
- target: test/functional/ios/search_context/find_by_*.py test/functional/ios/remote_fs_tests.py test/functional/ios/safari_tests.py test/functional/ios/execute_driver_tests.py | |
name: func_test_ios1 | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- name: Select Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: 15.3 | |
- run: defaults write com.apple.iphonesimulator PasteboardAutomaticSync -bool false | |
- uses: futureware-tech/simulator-action@v3 | |
with: | |
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md | |
model: 'iPhone 15 Plus' | |
os_version: '14.3.1' | |
# needed? | |
- run: brew install ffmpeg | |
# Start Appium | |
- run: npm install -g appium | |
- run: | | |
appium driver install xcuitest | |
appium plugin install images | |
appium plugin install execute-driver | |
nohup appium --use-plugins=images,execute-driver --relaxed-security --log-timestamp --log-no-colors > appium.log & | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- run: | | |
git --no-pager log -n1 | |
python --version | |
ffmpeg -version | |
appium --version | |
node --version | |
npm --version | |
name: Check versions | |
- run: | | |
pip install --upgrade pip | |
pip install --upgrade pipenv | |
pipenv lock --clear | |
pipenv install -d --system | |
pytest ${{ matrix.test_targets.target}} --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html | |
- name: Save server output | |
if: ${{ always() }} | |
uses: actions/upload-artifact@master | |
with: | |
name: appium-ios-${{matrix.test_targets.name}}.log | |
path: appium.log |