Skip to content

Update README.md

Update README.md #3

Workflow file for this run

name: execute tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install from requirements.txt
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install browsers
run: python -m playwright install --with-deps
- name: Run your tests
run: pytest --tracing=retain-on-failure
- name: Results
uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-traces
path: test-results/