From a5d912c887a4d89519c6d2fdd125ce60831c6325 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Mon, 25 Apr 2022 12:08:50 -0400 Subject: [PATCH] =?UTF-8?q?v0.2.0=20=E2=80=94=20`@fail=5Fslow`=20marker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Test against pytest 7 - Added `@pytest.mark.fail_slow(DURATION)` marker for making individual tests fail if they 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 2f76fdb..857cf38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.2.0 (in development) ------------------------ +v0.2.0 (2022-04-25) +------------------- - Test against pytest 7 - Added `@pytest.mark.fail_slow(DURATION)` marker for making individual tests fail if they take too long to run diff --git a/LICENSE b/LICENSE index b68b39d..4e64b8c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2021 John Thorvald Wodder II +Copyright (c) 2021-2022 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 8c6e275..c07e068 100644 --- a/src/pytest_fail_slow.py +++ b/src/pytest_fail_slow.py @@ -44,7 +44,7 @@ Visit for more information. """ -__version__ = "0.2.0.dev1" +__version__ = "0.2.0" __author__ = "John Thorvald Wodder II" __author_email__ = "pytest-fail-slow@varonathe.org" __license__ = "MIT"