Skip to content

Adding Appium 2 Examples using the SwagLabs app #50

Adding Appium 2 Examples using the SwagLabs app

Adding Appium 2 Examples using the SwagLabs app #50

Workflow file for this run

name: Demo Python Tests
on:
- push
- pull_request
jobs:
python-tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
test: [ best-practice-desktop-us, accessibility, saucebindings-pytest, demo]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: pipenv install
- name: Run ${{ matrix.test }} tests
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
run: pipenv run ${{ matrix.test }}