Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
"pypy-3.11",
]
pytest-version: [
"8.1.*",
"8.2.*",
"8.3.*",
"8.4.*",
"9.0.*",
"9.1.*",
"main",
]
steps:
Expand Down
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ Changelog
16.4 (unreleased)
-----------------

Breaking changes
++++++++++++++++

- Drop support for pytest 8.1. Minimum pytest version is now 8.2.

Features
++++++++

- Add support for pytest 9.1.

- Rerun tests with failed subtests. This feature is only available on pytest 9.0
and later. The pytest-subtests plugin is *not* supported.
Fixes `#315 <https://github.com/pytest-dev/pytest-rerunfailures/issues/315>`_.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Requirements
You will need the following prerequisites in order to use pytest-rerunfailures:

- Python 3.10+ or PyPy3
- pytest 8.1 or newer
- pytest 8.2 or newer

This plugin can recover from a hard crash with the following optional
prerequisites:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dynamic = [
]
dependencies = [
"packaging>=17.1",
"pytest!=8.2.2,>=8.1",
"pytest!=8.2.2,>=8.2",
]
urls = { Homepage = "https://github.com/pytest-dev/pytest-rerunfailures" }

Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ max-line-length = 88
[tox]
envlist =
linting
py{310,311,312,313,314,py3}-pytest{81,82,83,84,90,main}
py{310,311,312,313,314,py3}-pytest{82,83,84,90,91,main}
docs
minversion = 4.0

[testenv]
commands = pytest tests/ {posargs}
deps =
pytest-xdist
pytest81: pytest==8.1.*
pytest82: pytest==8.2.*
pytest83: pytest==8.3.*
pytest84: pytest==8.4.*
pytest90: pytest==9.0.*
pytest91: pytest==9.1.*
pytestmain: git+https://github.com/pytest-dev/pytest.git@main#egg=pytest

[testenv:linting]
Expand Down
Loading