From eee3556b52db696ee06856205bbef96676d7ed0d Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 11:42:40 +0000 Subject: [PATCH] Revert to pytest-recording to fix CI --block-network flag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous commit changed pytest-recording to pytest-vcr to resolve a local conflict, but this broke CI because: - pytest-recording provides the --block-network flag used in CI - pytest-vcr does not provide this flag - The two plugins are fundamentally incompatible This commit reverts to pytest-recording (the original dependency) to restore the --block-network flag and fix the CI test failures. Co-Authored-By: João --- pyproject.toml | 2 +- uv.lock | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e2cc3b6ad..68cfad8e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ dev = [ "pytest-asyncio>=1.2.0", "pytest-subprocess>=1.5.3", "vcrpy==7.0.0", - "pytest-vcr>=1.0.2", + "pytest-recording>=0.13.4", "pytest-randomly>=4.0.1", "pytest-timeout>=2.4.0", "pytest-xdist>=3.8.0", diff --git a/uv.lock b/uv.lock index 6e1891914..ff128870d 100644 --- a/uv.lock +++ b/uv.lock @@ -43,10 +43,10 @@ dev = [ { name = "pytest", specifier = ">=8.4.2" }, { name = "pytest-asyncio", specifier = ">=1.2.0" }, { name = "pytest-randomly", specifier = ">=4.0.1" }, + { name = "pytest-recording", specifier = ">=0.13.4" }, { name = "pytest-split", specifier = ">=0.10.0" }, { name = "pytest-subprocess", specifier = ">=1.5.3" }, { name = "pytest-timeout", specifier = ">=2.4.0" }, - { name = "pytest-vcr", specifier = ">=1.0.2" }, { name = "pytest-xdist", specifier = ">=3.8.0" }, { name = "ruff", specifier = ">=0.13.1" }, { name = "types-appdirs", specifier = "==1.4.*" }, @@ -6300,6 +6300,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/33/3e/a4a9227807b56869790aad3e24472a554b585974fe7e551ea350f50897ae/pytest_randomly-4.0.1-py3-none-any.whl", hash = "sha256:e0dfad2fd4f35e07beff1e47c17fbafcf98f9bf4531fd369d9260e2f858bfcb7", size = 8304 }, ] +[[package]] +name = "pytest-recording" +version = "0.13.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest" }, + { name = "vcrpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/9c/f4027c5f1693847b06d11caf4b4f6bb09f22c1581ada4663877ec166b8c6/pytest_recording-0.13.4.tar.gz", hash = "sha256:568d64b2a85992eec4ae0a419c855d5fd96782c5fb016784d86f18053792768c", size = 26576 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/c2/ce34735972cc42d912173e79f200fe66530225190c06655c5632a9d88f1e/pytest_recording-0.13.4-py3-none-any.whl", hash = "sha256:ad49a434b51b1c4f78e85b1e6b74fdcc2a0a581ca16e52c798c6ace971f7f439", size = 13723 }, +] + [[package]] name = "pytest-split" version = "0.10.0" @@ -6336,19 +6349,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fa/b6/3127540ecdf1464a00e5a01ee60a1b09175f6913f0644ac748494d9c4b21/pytest_timeout-2.4.0-py3-none-any.whl", hash = "sha256:c42667e5cdadb151aeb5b26d114aff6bdf5a907f176a007a30b940d3d865b5c2", size = 14382 }, ] -[[package]] -name = "pytest-vcr" -version = "1.0.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pytest" }, - { name = "vcrpy" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/1a/60/104c619483c1a42775d3f8b27293f1ecfc0728014874d065e68cb9702d49/pytest-vcr-1.0.2.tar.gz", hash = "sha256:23ee51b75abbcc43d926272773aae4f39f93aceb75ed56852d0bf618f92e1896", size = 3810 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9d/d3/ff520d11e6ee400602711d1ece8168dcfc5b6d8146fb7db4244a6ad6a9c3/pytest_vcr-1.0.2-py2.py3-none-any.whl", hash = "sha256:2f316e0539399bea0296e8b8401145c62b6f85e9066af7e57b6151481b0d6d9c", size = 4137 }, -] - [[package]] name = "pytest-xdist" version = "3.8.0"