File tree Expand file tree Collapse file tree 1 file changed +0
-24
lines changed
Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Original file line number Diff line number Diff line change @@ -8331,27 +8331,3 @@ async def test_workflow_headers_with_codec(
83318331 else :
83328332 assert headers ["foo" ].data != b"bar"
83338333
8334-
8335- async def test_summary_with_codec (client : Client , env : WorkflowEnvironment ):
8336- if env .supports_time_skipping :
8337- pytest .skip ("Time skipping server doesn't persist headers." )
8338-
8339- # Make client with this codec and run a couple of existing tests
8340- config = client .config ()
8341- config ["data_converter" ] = DataConverter (payload_codec = SimpleCodec ())
8342- client = Client (** config )
8343-
8344- async with new_worker (
8345- client ,
8346- SimpleActivityWorkflow ,
8347- SignalAndQueryWorkflow ,
8348- activities = [say_hello ],
8349- ) as worker :
8350- workflow_handle = await client .start_workflow (
8351- SimpleActivityWorkflow .run ,
8352- "Temporal" ,
8353- id = f"workflow-{ uuid .uuid4 ()} " ,
8354- task_queue = worker .task_queue ,
8355- )
8356- assert await workflow_handle .result () == "Hello, Temporal!"
8357- assert False
You can’t perform that action at this time.
0 commit comments