Skip to content

Commit

Permalink
Merge branch 'pytest-dev:main' into un_spy_implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
sgaist committed Oct 4, 2022
2 parents 79d54e1 + a1c7421 commit 0098d86
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
os: [ubuntu-latest, windows-latest]
include:
- python: "3.7"
Expand All @@ -22,6 +22,8 @@ jobs:
tox_env: "py39"
- python: "3.10"
tox_env: "py310"
- python: "3.11-dev"
tox_env: "py311"

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -24,7 +24,7 @@ repos:
- id: reorder-python-imports
args: ['--application-directories=.:src']
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.971 # NOTE: keep this in sync with tox.ini
rev: v0.981 # NOTE: keep this in sync with tox.ini
hooks:
- id: mypy
files: ^(src|tests)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -33,6 +33,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Testing",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 3.5.3
envlist = py{37,38,39,310}, norewrite
envlist = py{37,38,39,310,311}, norewrite

[testenv]
passenv = USER USERNAME
Expand Down

0 comments on commit 0098d86

Please sign in to comment.