Skip to content

Add e2e browser tests #72

Add e2e browser tests

Add e2e browser tests #72

Workflow file for this run

name: Test with tox
on:
- pull_request
jobs:
build-and-test:
runs-on: ubuntu-latest
container: mcr.microsoft.com/playwright:v1.42.1-jammy
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7", "pypy-3.8"]
steps:
- uses: actions/checkout@v1
- 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 tox tox-gh-actions coveralls
- name: Test with tox
run: tox -p auto
env:
TOX_PARALLEL_NO_SPINNER: 1