This commit is contained in:
2026-03-28 10:05:59 -03:00
parent e46bbc419c
commit d0707333fd
12 changed files with 381 additions and 120 deletions

View File

@@ -1,4 +1,4 @@
"""Tests for the LangGraph detection pipeline."""
"""Tests for the detection pipeline runner."""
import os
@@ -33,9 +33,9 @@ def test_graph_compiles():
def test_graph_has_all_nodes():
graph = build_graph()
runner = build_graph()
for node in NODES:
assert node in graph.nodes
assert node in runner.stage_sequence
@requires_inference