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 2e63d5e commit 0d033e1Copy full SHA for 0d033e1
tests/integration/test_server.py
@@ -79,6 +79,17 @@ def test_pb_entire_workflow(myflow):
79
assert data.workflow.id == myflow.id
80
81
82
+def test_pb_workflow_only(myflow):
83
+ """Test Protobuf workflow only endpoint method."""
84
+ data = PB_METHOD_MAP['pb_workflow_only']()
85
+ data.ParseFromString(
86
+ call_server_method(
87
+ myflow.server.pb_workflow_only
88
+ )
89
90
+ assert data.workflow.id == myflow.id
91
+
92
93
async def test_stop(one: Scheduler, start):
94
"""Test stop."""
95
async with start(one):
0 commit comments