Skip to content

Commit

Permalink
Run tests on Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
drhagen committed Oct 6, 2021
1 parent ceb7e4f commit 583a1b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']
runs-on: ubuntu-latest
steps:
- name: Checkout repo
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox_poetry


@nox_poetry.session(python=["3.7", "3.8", "3.9"])
@nox_poetry.session(python=["3.7", "3.8", "3.9", "3.10"])
def test(session: nox_poetry.Session):
session.install(".")
session.install("pytest", "pytest-cov", "pytest-timeout")
Expand Down

0 comments on commit 583a1b3

Please sign in to comment.