From c2c58eba9acf6a278bc6ceff0247badd0fadf28e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 16:39:51 +0000 Subject: [PATCH] Bump pytest-django from 4.5.2 to 4.7.0 (#1004) * Bump pytest-django from 4.5.2 to 4.7.0 Bumps [pytest-django](https://github.com/pytest-dev/pytest-django) from 4.5.2 to 4.7.0. - [Release notes](https://github.com/pytest-dev/pytest-django/releases) - [Changelog](https://github.com/pytest-dev/pytest-django/blob/master/docs/changelog.rst) - [Commits](https://github.com/pytest-dev/pytest-django/compare/v4.5.2...v4.7.0) --- updated-dependencies: - dependency-name: pytest-django dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Remove unneeded mypy hint --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fmrsabino <3332770+fmrsabino@users.noreply.github.com> --- requirements-dev.txt | 2 +- src/chains/tests/test_apps.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 356060d8..4e8e334a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -6,7 +6,7 @@ Faker==21.0.0 flake8==6.1.0 isort==5.13.2 pre-commit==3.6.0 -pytest-django==4.5.2 +pytest-django==4.7.0 responses==0.24.1 # mypy and PEP 561 stubs diff --git a/src/chains/tests/test_apps.py b/src/chains/tests/test_apps.py index 772561e7..84a242dc 100644 --- a/src/chains/tests/test_apps.py +++ b/src/chains/tests/test_apps.py @@ -22,7 +22,7 @@ def test_validate_storage_setup(settings) -> None: # type: ignore[no-untyped-de settings.AWS_STORAGE_BUCKET_NAME = None assertRaisesMessage( - ImproperlyConfigured, # type: ignore[arg-type] + ImproperlyConfigured, "Storage set to S3 but AWS is not configured", _validate_storage_setup, )