Skip to content

Commit

Permalink
time
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw committed Feb 22, 2024
1 parent 17201aa commit f65bca9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/tests/integration_tests/test_runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,9 @@ async def my_async_generator(num: int) -> AsyncGenerator[str, None]:
"Async yielded 4",
]

poll_runs_until_count(langchain_client, project_name, 1, max_retries=20)
poll_runs_until_count(
langchain_client, project_name, 1, max_retries=20, sleep_time=5
)
runs = list(langchain_client.list_runs(project_name=project_name))
run = runs[0]
assert run.run_type == "chain"
Expand Down

0 comments on commit f65bca9

Please sign in to comment.