From 4971fe2177174b11d2eb2107b87b27f56427550c Mon Sep 17 00:00:00 2001 From: Carmen Alvarez Date: Sat, 20 Jul 2024 16:24:03 +0200 Subject: [PATCH] fix: Update `pyproject.toml` to include the fixtures as a pytest plugin. Addresses issue #12. --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1e51c10..2a3c716 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pytest-sqlalchemy-mock" -version = "0.1.6" +version = "0.1.7" license.file = "LICENSE" description = "pytest sqlalchemy plugin for mock" authors = [ @@ -68,3 +68,6 @@ norecursedirs = [ ".eggs", "venv", ] + +[project.entry-points."pytest11"] +pytest_sqlalchemy_mock = "pytest_sqlalchemy_mock.base"