File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ jobs:
144144 COVERAGE_CORE : sysmon
145145 run : |
146146 cd backend
147- uv run pytest tests/integration -p no:xdist - v -rs \
147+ uv run pytest tests/integration -v -rs \
148148 --ignore=tests/integration/k8s \
149149 --cov=app --cov-branch \
150150 --cov-report=xml --cov-report=term
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ async def seed_users() -> None:
104104 print ("Admin: admin / admin123 (or ADMIN_USER_PASSWORD)" )
105105 print ("=" * 50 )
106106
107- client .close ()
107+ await client .close ()
108108
109109
110110if __name__ == "__main__" :
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ async def cleanup(self):
9898 # Drop test MongoDB database
9999 if self .mongo_client :
100100 await self .mongo_client .drop_database (self .db_name )
101- self .mongo_client .close ()
101+ await self .mongo_client .close ()
102102
103103 # Clear Redis test database
104104 if self .redis_client :
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ async def run_saga_orchestrator() -> None:
111111 await producer .stop ()
112112 await idempotency_manager .close ()
113113 await r .aclose ()
114- db_client .close ()
114+ await db_client .close ()
115115 logger .info ("Saga orchestrator shutdown complete" )
116116
117117
You can’t perform that action at this time.
0 commit comments