From 863c78bb1fde5154ff29d5a38f97ddbb4157fb55 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Wed, 11 Jun 2025 17:41:29 -0600 Subject: [PATCH] Fix test dependency: replace httpx-mock with pytest-httpx The package httpx-mock doesn't exist. The correct package for mocking httpx in pytest is pytest-httpx which provides the httpx_mock fixture. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9427ad9..04db90e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,7 +70,7 @@ test = [ "pytest>=7.0.0", "pytest-asyncio>=0.21.0", "pytest-cov>=4.0.0", - "httpx-mock>=0.10.0" + "pytest-httpx>=0.21.0" ] [project.urls]