langflow/tests/conftest.py
2023-03-24 11:21:29 -03:00

11 lines
295 B
Python

from pathlib import Path
import pytest
def pytest_configure():
pytest.BASIC_EXAMPLE_PATH = (
Path(__file__).parent.absolute() / "data" / "basic_example.json"
)
pytest.COMPLEX_EXAMPLE_PATH = (
Path(__file__).parent.absolute() / "data" / "complex_example.json"
)