From fc61489def49f1b155a9d73c90211612cb1b8c78 Mon Sep 17 00:00:00 2001 From: Tristan Lee Date: Fri, 15 Sep 2023 01:31:37 -0500 Subject: [PATCH] added tests for Windows environment --- .github/workflows/pytest_windows.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/pytest_windows.yml diff --git a/.github/workflows/pytest_windows.yml b/.github/workflows/pytest_windows.yml new file mode 100644 index 0000000..b1be78c --- /dev/null +++ b/.github/workflows/pytest_windows.yml @@ -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 \ No newline at end of file