reorg files

This commit is contained in:
2026-07-22 23:49:44 +02:00
parent 98ac4abca1
commit 0526406472
69 changed files with 760 additions and 539 deletions
+6 -6
View File
@@ -2,7 +2,7 @@ from pathlib import Path
import pytest
from agentci.codegraph import CodeGraph, CodeGraphError
from agentci.integrations.codegraph import CodeGraph, CodeGraphError
class FakeProcess:
@@ -27,7 +27,7 @@ async def test_initializes_incomplete_index_and_excludes_it_from_git(
return FakeProcess()
monkeypatch.setattr(
"agentci.codegraph.asyncio.create_subprocess_exec",
"agentci.integrations.codegraph.asyncio.create_subprocess_exec",
create_subprocess_exec,
)
@@ -53,7 +53,7 @@ async def test_syncs_an_existing_index_without_duplicating_exclude(
return FakeProcess()
monkeypatch.setattr(
"agentci.codegraph.asyncio.create_subprocess_exec",
"agentci.integrations.codegraph.asyncio.create_subprocess_exec",
create_subprocess_exec,
)
@@ -86,7 +86,7 @@ async def test_handles_exclude_file_boundaries(
return FakeProcess()
monkeypatch.setattr(
"agentci.codegraph.asyncio.create_subprocess_exec",
"agentci.integrations.codegraph.asyncio.create_subprocess_exec",
create_subprocess_exec,
)
@@ -103,7 +103,7 @@ async def test_reports_missing_executable(tmp_path: Path, monkeypatch: pytest.Mo
raise FileNotFoundError(2, "No such file or directory", "codegraph")
monkeypatch.setattr(
"agentci.codegraph.asyncio.create_subprocess_exec",
"agentci.integrations.codegraph.asyncio.create_subprocess_exec",
create_subprocess_exec,
)
@@ -125,7 +125,7 @@ async def test_reports_nonzero_exit_with_bounded_non_utf8_stderr(
return FakeProcess(returncode=7, stderr=stderr)
monkeypatch.setattr(
"agentci.codegraph.asyncio.create_subprocess_exec",
"agentci.integrations.codegraph.asyncio.create_subprocess_exec",
create_subprocess_exec,
)