updated README with playwright installation command, added pytest workflow

This commit is contained in:
Tristan Lee
2023-09-15 01:26:51 -05:00
parent 92ae29c722
commit 4836fd93aa
2 changed files with 16 additions and 0 deletions

15
.github/workflows/pytest.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: Test
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.9'
- run: pip install -e .[dev]
- run: python -m playwright install
- run: pytest --exitfirst --failed-first