Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Python 3.10 tests #102

Closed
wants to merge 13 commits into from
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: Tests
on: [push]
on: [push, pull_request]
jobs:
linux-tests:
name: Python ${{matrix.python-version}} tests on Linux
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy3"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10-dev", "pypy3"]
Kludex marked this conversation as resolved.
Show resolved Hide resolved

steps:
- name: Checkout repos
Expand All @@ -20,10 +20,10 @@ jobs:
architecture: x64

- name: Install Tox
run: pip install tox
run: pip install tox tox-py
Kludex marked this conversation as resolved.
Show resolved Hide resolved

- name: Run tests
run: tox -e ${{matrix.python-version}} -- -vrsx --color=yes
run: tox --py current -- -vrsx --color=yes
Kludex marked this conversation as resolved.
Show resolved Hide resolved

windows-tests:
name: Python ${{matrix.python-version}} tests on Windows ${{matrix.architecture}}
Expand Down