Skip to content

Commit

Permalink
Merge pull request #18 from tswast/main
Browse files Browse the repository at this point in the history
Add tox texts for Python 3.11, move configs.py to submodule
  • Loading branch information
str0zzapreti committed Aug 23, 2023
2 parents 5e08732 + 618264d commit c91cc3d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10']
python-version: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Framework :: Pytest",
]
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pytest_retry/retry_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from traceback import format_exception
from typing import Generator, Optional
from collections.abc import Iterable
from configs import Defaults
from pytest_retry.configs import Defaults
from _pytest.terminal import TerminalReporter
from _pytest.logging import caplog_records_key

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[tox]
minversion = 3.9.0
envlist = py39, py310, flake8, mypy
envlist = py39, py310, py311, flake8, mypy
isolated_build = true

[gh-actions]
python =
3.9: py39
3.10: py310, mypy, flake8
3.11: py311

[testenv]
setenv =
Expand Down

0 comments on commit c91cc3d

Please sign in to comment.