added tests for Windows environment

This commit is contained in:
Tristan Lee
2023-09-15 01:31:37 -05:00
parent 847fcb55cb
commit fc61489def

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

@@ -0,0 +1,15 @@
name: Test on Windows
on: [push]
jobs:
pytest:
runs-on: windows-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