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 -1
View File
@@ -1,9 +1,12 @@
from fastapi import FastAPI
from fastapi.testclient import TestClient
import agentic_security.test_spec_assets as test_spec_assets
from agentic_security.routes.scan import router
client = TestClient(router)
app = FastAPI()
app.include_router(router)
client = TestClient(app)
def test_upload_csv_and_run():