From f211f73fc7e46c13c4efa0d4b6b5a176ebe25717 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Wed, 21 May 2025 15:13:34 +0200 Subject: [PATCH] build(deps): Add pytest-mock as a developer dependency --- poetry.lock | 20 +++++++++++++++++++- pyproject.toml | 1 + 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 0da595f..87fc302 100644 --- a/poetry.lock +++ b/poetry.lock @@ -831,6 +831,24 @@ pytest = ">=4.6" [package.extras] testing = ["fields", "hunter", "process-tests", "pytest-xdist", "virtualenv"] +[[package]] +name = "pytest-mock" +version = "3.14.0" +description = "Thin-wrapper around the mock package for easier use with pytest" +optional = false +python-versions = ">=3.8" +groups = ["dev"] +files = [ + {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, + {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, +] + +[package.dependencies] +pytest = ">=6.2.5" + +[package.extras] +dev = ["pre-commit", "pytest-asyncio", "tox"] + [[package]] name = "python-debian" version = "1.0.1" @@ -1024,4 +1042,4 @@ files = [ [metadata] lock-version = "2.1" python-versions = "~3.13" -content-hash = "638193dfe88570e551018bb4f01aa8dd3f3ff27c19e8114c1dc269d1f6a086ab" +content-hash = "c778f03ed4db825597abdfa53d9dc90fed168d978a929383922ab8acabe71f54" diff --git a/pyproject.toml b/pyproject.toml index f5ebba4..8dcbf3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ pre-commit = "^4.2.0" pylint = "^3.3.7" pytest = "^8.3.5" pytest-cov = "^6.1.1" +pytest-mock = "^3.14.0" reuse = "^5.0.2" [tool.black]