feat(poetry update):

This commit is contained in:
Alexander Myasoedov
2025-11-30 14:21:20 +02:00
parent c45778f196
commit 8ddfec303f
5 changed files with 851 additions and 512 deletions
+4 -2
View File
@@ -1,13 +1,15 @@
from pathlib import Path
import pytest
from fastapi import HTTPException
from fastapi import FastAPI, HTTPException
from fastapi.testclient import TestClient
from agentic_security.primitives import Settings
from agentic_security.routes.static import get_static_file, router
client = TestClient(router)
app = FastAPI()
app.include_router(router)
client = TestClient(app)
def test_root_route():