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.0.*",
"8.1.*",
"8.2.*",
"8.3.*",
"8.4.*",
"9.0.*",
"main",
]
steps:
Expand Down
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ Changelog
16.2 (unreleased)
-----------------

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

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

Features
++++++++

- Add support for pytest 9.0.

Bug fixes
+++++++++

- Fix missing teardown for session and module scoped fixtures when fixture teardown fails.
Fixes `#314 <https://github.com/pytest-dev/pytest-rerunfailures/issues/314>`_.

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.0 or newer
- pytest 8.1 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,>=7.4",
"pytest!=8.2.2,>=8.1",
]
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{80,81,82,83,84,main}
py{310,311,312,313,314,py3}-pytest{81,82,83,84,90,main}
docs
minversion = 4.0

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

[testenv:linting]
Expand Down
Loading