linted+fmt
All checks were successful
Deploy on push / deploy (push) Successful in 6s

This commit is contained in:
2025-05-29 12:37:39 +03:00
parent d4c16658bd
commit 4070f4fcde
49 changed files with 835 additions and 983 deletions

View File

@@ -1,6 +1,7 @@
import pytest
from typing import Dict
import pytest
@pytest.fixture
def oauth_settings() -> Dict[str, Dict[str, str]]:

View File

@@ -1,8 +1,9 @@
import pytest
from unittest.mock import AsyncMock, MagicMock, patch
import pytest
from starlette.responses import JSONResponse, RedirectResponse
from auth.oauth import get_user_profile, oauth_login, oauth_callback
from auth.oauth import get_user_profile, oauth_callback, oauth_login
# Подменяем настройки для тестов
with (

View File

@@ -1,5 +1,7 @@
import asyncio
import pytest
from services.redis import redis
from tests.test_config import get_test_client