We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3060c8 commit 446cf82Copy full SHA for 446cf82
tests/utilities/test_prompt.py
@@ -361,7 +361,7 @@ def call_llm_with_hl_call(messages: list[dict]):
361
assert len(response.items) == 1 # type: ignore
362
363
364
-@pytest.mark.skip(retries=3, delay=5)
+@pytest.mark.flaky(retries=3, delay=5)
365
def test_overridden_call_with_prompt_in_prompt(
366
humanloop_client: Humanloop,
367
test_directory: DirectoryIdentifiers,
@@ -410,7 +410,7 @@ def outer_call_llm_with_hl_call(messages: list[dict]):
410
)
411
412
# Wait for the workspace to be updated
413
- time.wait(3)
+ time.sleep(3)
414
415
assert output is not None
416
response = humanloop_client.directories.get(id=test_directory.id)
0 commit comments