Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
Mark as unmaintained
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz committed Jan 2, 2024
1 parent bfcb75d commit 94eb253
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
Changelog
=========

* Mark as unmaintained.

1.5.0 (2023-07-10)
------------------

Expand Down
14 changes: 14 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,20 @@ pytest-is-running

pytest plugin providing a function to check if pytest is running.

Unmaintained (2024-01-02)
=========================

I stopped maintaining this package as it doesn’t provide much value over checking whether pytest has been imported:

.. code-block:: python
import sys
if "pytest" in sys.modules:
...
In every project I’ve seen, pytest is only imported when running.

----

**Working on a Django project?**
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ license = {text = "MIT"}
authors = [{name = "Adam Johnson", email = "me@adamj.eu"}]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Development Status :: 7 - Inactive",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 94eb253

Please sign in to comment.