main_topic-fix
All checks were successful
Deploy on push / deploy (push) Successful in 57s

This commit is contained in:
2025-02-12 00:31:18 +03:00
parent 5a4f75537d
commit 52b608da99
6 changed files with 22 additions and 9 deletions

View File

@@ -9,7 +9,6 @@ from starlette.testclient import TestClient
from main import app
from services.db import Base
from services.redis import redis
from settings import DB_URL
# Use SQLite for testing
TEST_DB_URL = "sqlite:///test.db"

View File

@@ -3,7 +3,7 @@ from datetime import datetime
import pytest
from orm.author import Author
from orm.reaction import Reaction, ReactionKind
from orm.reaction import ReactionKind
from orm.shout import Shout

View File

@@ -6,9 +6,7 @@ from pydantic import ValidationError
from auth.validations import (
AuthInput,
AuthResponse,
OAuthInput,
TokenPayload,
UserLoginInput,
UserRegistrationInput,
)