fix: Enhance tests and update NVIDIA Ingest installation instructions (#6753)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-02-21 11:05:29 -03:00 committed by GitHub
commit 3940e8a94a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 11 deletions

View file

@ -401,8 +401,9 @@ async def client_fixture(
@pytest.fixture
def runner():
return CliRunner()
def runner(tmp_path):
env = {"LANGFLOW_DATABASE_URL": f"sqlite:///{tmp_path}/test.db"}
return CliRunner(env=env)
@pytest.fixture