Skip to content

Commit

Permalink
v0.3.0 — Error on marker misuse
Browse files Browse the repository at this point in the history
- The `@pytest.mark.fail_slow()` marker now errors if not given exactly one argument.  Previously, it would either use the first argument or, if no arguments were given, it would be ignored.
  • Loading branch information
jwodder committed Aug 13, 2022
1 parent df8fe67 commit 26039a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.3.0 (in development)
-----------------------
v0.3.0 (2022-08-12)
-------------------
- The `@pytest.mark.fail_slow()` marker now errors if not given exactly one
argument. Previously, it would either use the first argument or, if no
arguments were given, it would be ignored.
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_fail_slow.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
Visit <https://github.com/jwodder/pytest-fail-slow> for more information.
"""

__version__ = "0.3.0.dev1"
__version__ = "0.3.0"
__author__ = "John Thorvald Wodder II"
__author_email__ = "pytest-fail-slow@varonathe.org"
__license__ = "MIT"
Expand Down

0 comments on commit 26039a0

Please sign in to comment.