test: Add client fixture override for runnable vertices manager unit test. (#3430)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-08-20 08:00:38 -03:00 committed by GitHub
commit 0e1155bb43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,6 +6,11 @@ import pytest
from langflow.graph.graph.runnable_vertices_manager import RunnableVerticesManager
@pytest.fixture
def client():
pass
@pytest.fixture
def data():
run_map: defaultdict(list) = {"A": ["B", "C"], "B": ["D"], "C": ["D"], "D": []}