Skip to content

Commit

Permalink
Fix #153, turn off summaries for pytest < 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
okken committed Jan 8, 2024
1 parent 951385b commit 904c84d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ All notable changes to this project be documented in this file.
-->

## [2.2.4] - 2024-Jan-*

- fix [153](https://github.com/okken/pytest-check/issues/153)
- Summaries from 2.2.3 are cool, but don't work for pytest < 7.3
- Remove them for earlier pytest
- Add tox test run for pytest 7.0.0
- Change dependencies to require 7.0.0 pytest


## [2.2.3] - 2023-Dec-31

- Check failure info now shows up in summaries.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ authors = [{name = "Brian Okken"}]
readme = "README.md"
license = {file = "LICENSE.txt"}
description="A pytest plugin that allows multiple failures per test."
version = "2.2.3"
version = "2.2.4"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
"Framework :: Pytest" ,
]
dependencies = ["pytest"]
dependencies = ["pytest>=7.0.0"]

[project.urls]
Home = "https://github.com/okken/pytest-check"
Expand Down

0 comments on commit 904c84d

Please sign in to comment.