From 58f94678f1f0aba47af5049df2d35b94155ed32c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 May 2024 13:21:30 +0000 Subject: [PATCH] Update pytest requirement from ==8.0.* to ==8.2.* in /api Updates the requirements on [pytest](https://github.com/pytest-dev/pytest) to permit the latest version. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.0.0rc1...8.2.0) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- api/tests/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tests/requirements.txt b/api/tests/requirements.txt index 0051b483..c3ef4022 100644 --- a/api/tests/requirements.txt +++ b/api/tests/requirements.txt @@ -1,5 +1,5 @@ flake8==7.0.* mypy==1.9.* -pytest==8.0.* +pytest==8.2.* pytest-cov==5.0.* httpx==0.27.*