refactor: add fixtures for client in test files to speed them up (#3490)

refactor: Add fixtures for client in test files to speed them up
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-08-22 16:08:47 -03:00 committed by GitHub
commit 6d048b2d2c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 44 additions and 50 deletions

View file

@ -6,6 +6,11 @@ from langflow.utils.util import build_template_from_function, get_base_classes,
from pydantic import BaseModel
@pytest.fixture
def client():
pass
# Dummy classes for testing purposes
class Parent(BaseModel):
"""Parent Class"""