From 80cc537b1a49474c09eadea4874019891f78c78c Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sat, 21 Oct 2023 12:50:45 -0400 Subject: [PATCH] =?UTF-8?q?v0.4.0=20=E2=80=94=20Failing=20on=20too-long=20?= =?UTF-8?q?setups?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- src/pytest_fail_slow.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc73d95..7019e4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/LICENSE b/LICENSE index 4e64b8c..80b7bc1 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/src/pytest_fail_slow.py b/src/pytest_fail_slow.py index a3e97bd..9c3a08f 100644 --- a/src/pytest_fail_slow.py +++ b/src/pytest_fail_slow.py @@ -15,7 +15,7 @@ Visit 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"