Skip to content

Commit

Permalink
v0.4.0 — Failing on too-long setups
Browse files Browse the repository at this point in the history
- Drop support for Python 3.6
- Support Python 3.11 and 3.12
- Added `@pytest.mark.fail_slow_setup()` marker and `--fail-slow-setup` command-line option for failing tests whose setups take too long to run
  • Loading branch information
jwodder committed Oct 21, 2023
1 parent 54c52ac commit 80cc537
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.4.0 (in development)
-----------------------
v0.4.0 (2023-10-21)
-------------------
- Drop support for Python 3.6
- Support Python 3.11 and 3.12
- Added `@pytest.mark.fail_slow_setup()` marker and `--fail-slow-setup`
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2021-2022 John Thorvald Wodder II
Copyright (c) 2021-2023 John Thorvald Wodder II

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
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 @@ -15,7 +15,7 @@
Visit <https://github.com/jwodder/pytest-fail-slow> for more information.
"""

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

0 comments on commit 80cc537

Please sign in to comment.