Skip to content

added args val for callback on top of text #11

added args val for callback on top of text

added args val for callback on top of text #11

Workflow file for this run

name: Pytest with Playwright
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', 3.12]
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: |
pip install poetry
poetry install
- name: Install Playwright browsers
run: |
poetry run playwright install
- name: Run pytest with Playwright
run: |
poetry run pytest e2e/