From 7b580881aec4771a542d5421cfc3e3f78ccd8f76 Mon Sep 17 00:00:00 2001 From: ITQ Date: Thu, 20 Nov 2025 22:17:18 +0300 Subject: [PATCH] fix: fixed tests --- .gitlab-ci.yml | 1 + tests/web_api/ioc.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f7882d1..39562c2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -213,6 +213,7 @@ lint: - uv sync --group linters --frozen - source $UV_PROJECT_ENVIRONMENT/bin/activate - just lint + - exit 1 rules: - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - if: $CI_PIPELINE_SOURCE == 'merge_request_event' diff --git a/tests/web_api/ioc.py b/tests/web_api/ioc.py index a11268c..2fe6919 100644 --- a/tests/web_api/ioc.py +++ b/tests/web_api/ioc.py @@ -30,6 +30,7 @@ from template_project.web_api.ioc.data_gateway import DataGatewayProvider from template_project.web_api.ioc.factory import FactoryProvider from template_project.web_api.ioc.idp import IdPProvider from template_project.web_api.ioc.interactor import InteractorProvider +from template_project.web_api.ioc.notifications import NotificationServiceProvider from template_project.web_api.ioc.oauth import OAuthClientProvider @@ -79,6 +80,7 @@ def make_ioc(configuration: Configuration) -> AsyncContainer: DataGatewayProvider(), CryptographerProvider(), OAuthClientProvider(), + NotificationServiceProvider(), TestProvider(), validation_settings=STRICT_VALIDATION, context={