From ee3260356bf5473a54a0ba88b70c3a40557f673c Mon Sep 17 00:00:00 2001 From: isaac hershenson Date: Fri, 20 Dec 2024 10:53:01 -0800 Subject: [PATCH] tests --- python/tests/integration_tests/test_client.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/python/tests/integration_tests/test_client.py b/python/tests/integration_tests/test_client.py index 7b104a603..45bb83218 100644 --- a/python/tests/integration_tests/test_client.py +++ b/python/tests/integration_tests/test_client.py @@ -1171,7 +1171,6 @@ def test_multipart_ingest_update_with_attachments( langchain_client: Client, caplog: pytest.LogCaptureFixture ) -> None: _session = "__test_multipart_ingest_update_with_attachments" - trace_a_id = uuid4() current_time = datetime.datetime.now(datetime.timezone.utc).strftime( "%Y%m%dT%H%M%S%fZ" @@ -1193,7 +1192,6 @@ def test_multipart_ingest_update_with_attachments( with caplog.at_level(logging.WARNING, logger="langsmith.client"): langchain_client.multipart_ingest(create=runs_to_create, update=[]) assert not caplog.records - wait_for(lambda: _get_run(str(trace_a_id), langchain_client)) runs_to_update: list[dict] = [ { @@ -1253,7 +1251,6 @@ def test_multipart_ingest_create_then_update( langchain_client.multipart_ingest(create=runs_to_create, update=[]) assert not caplog.records - wait_for(lambda: _get_run(str(trace_a_id), langchain_client)) runs_to_update: list[dict] = [ { @@ -1267,10 +1264,6 @@ def test_multipart_ingest_create_then_update( langchain_client.multipart_ingest(create=[], update=runs_to_update) assert not caplog.records - wait_for(lambda: _get_run(str(trace_a_id), langchain_client)) - - created_run = langchain_client.read_run(run_id=str(trace_a_id)) - assert created_run.outputs == {"output1": 3, "output2": 4} def test_multipart_ingest_update_then_create(