Skip to content

Refactor page object structure and add base components for Playwright… #14

Refactor page object structure and add base components for Playwright…

Refactor page object structure and add base components for Playwright… #14

Workflow file for this run

name: Pytest
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.8 ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install browsers
run: python -m playwright install
- name: Test with pytest
env:
GITHUB_RUN: True
run: |
pytest