Skip to content

Commit

Permalink
Add Windows integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccmaymay committed Oct 20, 2023
1 parent 3019f0a commit 0b53edc
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
tox run -e cov -- tests
tox run -e py -- integration-tests
linux-compatibility-tests:
compatibility-tests:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -37,6 +37,22 @@ jobs:
tox run -e pep8
tox run -e py -- tests
windows-main-tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install tox (and any other packages)
run: pip install tox
- name: Run tox
run: |
tox run -e pep8
tox run -e py -- tests
tox run -e py -- integration-tests
windows-compatibility-tests:
runs-on: windows-latest
strategy:
Expand Down

0 comments on commit 0b53edc

Please sign in to comment.