@@ -94,7 +94,8 @@ def mock_env_deployer_pipeline(monkeypatch: pytest.MonkeyPatch) -> EnvVarsDict:
9494
9595@pytest .fixture
9696def mock_env_devel_environment (
97- mock_env_devel_environment : EnvVarsDict , monkeypatch : pytest .MonkeyPatch
97+ mock_env_devel_environment : EnvVarsDict , # pylint: disable=redefined-outer-name
98+ monkeypatch : pytest .MonkeyPatch ,
9899) -> EnvVarsDict :
99100 # Overrides to ensure dev-features are enabled testings
100101 return mock_env_devel_environment | setenvs_from_dict (
@@ -173,10 +174,10 @@ def mock_env_dockerfile_build(monkeypatch: pytest.MonkeyPatch) -> EnvVarsDict:
173174@pytest .fixture
174175def mock_webserver_service_environment (
175176 monkeypatch : pytest .MonkeyPatch ,
176- mock_env_makefile : EnvVarsDict ,
177- mock_env_devel_environment : EnvVarsDict ,
178- mock_env_dockerfile_build : EnvVarsDict ,
179- mock_env_deployer_pipeline : EnvVarsDict ,
177+ mock_env_makefile : EnvVarsDict , # pylint: disable=redefined-outer-name
178+ mock_env_devel_environment : EnvVarsDict , # pylint: disable=redefined-outer-name
179+ mock_env_dockerfile_build : EnvVarsDict , # pylint: disable=redefined-outer-name
180+ mock_env_deployer_pipeline : EnvVarsDict , # pylint: disable=redefined-outer-name
180181) -> EnvVarsDict :
181182 """
182183 Mocks environment produce in the docker compose config with a .env (.env-devel)
0 commit comments