Skip to content

Commit

Permalink
fix #7
Browse files Browse the repository at this point in the history
  • Loading branch information
okken committed Sep 22, 2023
1 parent c7e7741 commit 39b522d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ All notable changes to this project be documented in this file.
- nothing so far
-->

## [2.2.2] - 2023-Sept-22

### fixed

- Issue #7

## [2.2.1] - 2023-Aug-11

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = [{name = "Brian Okken"}]
readme = "README.md"
license = {file = "LICENSE.txt"}
description="A pytest plugin that allows multiple failures per test."
version = "2.2.1"
version = "2.2.2"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
Expand Down
8 changes: 4 additions & 4 deletions src/pytest_check/check_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

_default_max_fail = None
_default_max_report = None
_default_max_tb = None
_default_max_tb = 1

_max_fail = None
_max_report = None
_max_tb = None
_max_fail = _default_max_fail
_max_report = _default_max_report
_max_tb = _default_max_tb
_num_failures = 0
_fail_function = None

Expand Down

0 comments on commit 39b522d

Please sign in to comment.