Bump the python-packages group across 1 directory with 4 updates #89
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: project-runner-remote-saucelab-mobile | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11.3"] | |
os: [ 'macos-latest' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install flake8 pytest | |
pip install -r requirements.txt | |
npm install -g [email protected] | |
appium -v | |
appium &>/dev/null & | |
- name: run appium android remote tests | |
run: | | |
# python project_runner.py run -fd 'features/scenarios/remote' -tg '{@remote-android}' -sg QA -ps scenario -pl ANDROID -rm true | |
- name: Sleep for 60s | |
uses: juliangruber/[email protected] | |
with: | |
time: 60s | |
- name: run appium ios remote tests | |
run: | | |
# python project_runner.py run -fd 'features/scenarios/remote' -tg '{@remote-ios}' -sg QA -ps scenario -pl IOS -rm true | |
- name: Sleep for 60s | |
uses: juliangruber/[email protected] | |
with: | |
time: 60s | |
- name: run web remote tests | |
run: | | |
# python project_runner.py run -fd 'features/scenarios/remote' -tg '{@remote-web}' -sg QA -ps scenario -pl WEB -rm true | |