From 97caf224b2cdb5d7fd360a681dc71a353db5452f Mon Sep 17 00:00:00 2001 From: Kirill Pinchuk Date: Sun, 4 Feb 2024 22:03:07 +0300 Subject: [PATCH] pytest: return entrypoint --- pyproject.toml | 3 +++ pytest_tipsi_testing/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a03c5e0..9cb0716 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,9 @@ exclude = [ [tool.hatch.commands] prerelease = 'hatch build' +[project.entry-points.pytest11] +pytest_tipsi_testing = 'pytest_tipsi_testing.plugin' + [tool.ruff] line-length = 100 diff --git a/pytest_tipsi_testing/__init__.py b/pytest_tipsi_testing/__init__.py index 96e3ce8..4e7c72a 100644 --- a/pytest_tipsi_testing/__init__.py +++ b/pytest_tipsi_testing/__init__.py @@ -1 +1 @@ -__version__ = '1.4.0' +__version__ = '1.4.3'