proyecto generalizado

This commit is contained in:
2026-05-23 16:44:45 +02:00
parent 2f990ea636
commit b4964261ec
94 changed files with 1032 additions and 320 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ from pathlib import Path
import pytest
from agentforge_core.api import deps
from forja_core.api import deps
@pytest.fixture
@@ -12,7 +12,7 @@ def integration_client(tmp_path: Path, monkeypatch: pytest.MonkeyPatch): # type
"""Cliente FastAPI con env apuntando a los assets reales del repo."""
from fastapi.testclient import TestClient
from agentforge_core.main import create_app
from forja_core.main import create_app
repo_root = Path(__file__).parent.parent.parent
monkeypatch.setenv("DATA_DIR", str(tmp_path))
@@ -19,8 +19,8 @@ EXAMPLES = (
def test_resume_tras_recreacion_del_app(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None:
from fastapi.testclient import TestClient
from agentforge_core.api import deps
from agentforge_core.main import create_app
from forja_core.api import deps
from forja_core.main import create_app
repo_root = Path(__file__).parent.parent.parent
monkeypatch.setenv("DATA_DIR", str(tmp_path))