Skip to content

Commit 3b9146e

Browse files
committed
CI-specific fix
1 parent be79852 commit 3b9146e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ jobs:
171171
pip3 install -r requirements-dev.txt
172172
173173
- name: Run backend tests with coverage
174+
timeout-minutes: 5
174175
env:
175176
BACKEND_BASE_URL: https://127.0.0.1:443
176177
# Use default MongoDB credentials for CI

backend/app/services/notification_service.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from typing import Awaitable, Callable, Mapping
66

77
import httpx
8-
from app.settings import get_settings
98

109
from app.core.exceptions import ServiceError
1110
from app.core.logging import logger
@@ -38,7 +37,7 @@
3837
from app.services.event_bus import EventBusManager
3938
from app.services.kafka_event_service import KafkaEventService
4039
from app.services.sse.redis_bus import SSERedisBus
41-
from app.settings import Settings
40+
from app.settings import Settings, get_settings
4241

4342
# Constants
4443
ENTITY_EXECUTION_TAG = "entity:execution"

0 commit comments

Comments
 (0)