vellum-workflow-server 1.7.9__py3-none-any.whl → 1.7.9.post1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of vellum-workflow-server might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-workflow-server
3
- Version: 1.7.9
3
+ Version: 1.7.9.post1
4
4
  Summary:
5
5
  License: AGPL
6
6
  Requires-Python: >=3.9.0,<4
@@ -5,7 +5,7 @@ workflow_server/api/healthz_view.py,sha256=itiRvBDBXncrw8Kbbc73UZLwqMAhgHOR3uSre
5
5
  workflow_server/api/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  workflow_server/api/tests/test_input_display_mapping.py,sha256=drBZqMudFyB5wgiUOcMgRXz7E7ge-Qgxbstw4E4f0zE,2211
7
7
  workflow_server/api/tests/test_workflow_view.py,sha256=_9SHdK1t-wwWILZFrnoYe5NhkoLazJnt7K1oH4bnJU0,30355
8
- workflow_server/api/tests/test_workflow_view_stream_workflow_route.py,sha256=8ccu1lVIpjrWnf6V0AepjjzBmrFBpKPPcqq6Q7Wo1Cw,37264
8
+ workflow_server/api/tests/test_workflow_view_stream_workflow_route.py,sha256=GjWbwSmjxb691LmKqaCsAItkcb3QJaHw_OG_H5ETWdc,37432
9
9
  workflow_server/api/workflow_view.py,sha256=tSepIRP0LcJUKae_wSHGw6P5Ho8K20_YTj3J-9ZL6bs,20463
10
10
  workflow_server/code_exec_runner.py,sha256=DLNNrinCRbnkSvlqVvSZ1wv_etI7r_kKAXNPGMj3jBk,2196
11
11
  workflow_server/config.py,sha256=cUdI_lEovV7e7lwCkGJ1eM9R4OZVJw5R5zT1eG1SzQQ,2122
@@ -28,7 +28,7 @@ workflow_server/utils/tests/test_sentry_integration.py,sha256=14PfuW8AaQNNtqLmBs
28
28
  workflow_server/utils/tests/test_system_utils.py,sha256=_4GwXvVvU5BrATxUEWwQIPg0bzQXMWBtiBmjP8MTxJM,4314
29
29
  workflow_server/utils/tests/test_utils.py,sha256=0Nq6du8o-iBtTrip9_wgHES53JSiJbVdSXaBnPobw3s,6930
30
30
  workflow_server/utils/utils.py,sha256=m7iMJtor5SQLWu7jlJw-X5Q3nmbq69BCxTMv6qnFYrA,4835
31
- vellum_workflow_server-1.7.9.dist-info/METADATA,sha256=Psd7iW5YIPN6KPYoHXjf_CdY9AnIZBgbagi-QKPSYSo,2267
32
- vellum_workflow_server-1.7.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
- vellum_workflow_server-1.7.9.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
- vellum_workflow_server-1.7.9.dist-info/RECORD,,
31
+ vellum_workflow_server-1.7.9.post1.dist-info/METADATA,sha256=8E2OHbTQqGwGX-PdG2qFZhfdsRli7xb0ybi2UuXRpqk,2273
32
+ vellum_workflow_server-1.7.9.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
+ vellum_workflow_server-1.7.9.post1.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
34
+ vellum_workflow_server-1.7.9.post1.dist-info/RECORD,,
@@ -117,7 +117,7 @@ def test_stream_workflow_route__happy_path(both_stream_types):
117
117
  "execution_id": str(span_id),
118
118
  "inputs": [],
119
119
  "environment_api_key": "test",
120
- "module": "workflow",
120
+ "module": "test",
121
121
  "timeout": 360,
122
122
  "files": {
123
123
  "__init__.py": "",
@@ -154,6 +154,7 @@ class Workflow(BaseWorkflow):
154
154
  }
155
155
 
156
156
  assert events[1]["name"] == "workflow.execution.initiated", events[1]
157
+ assert events[1]["body"]["workflow_definition"]["module"] == ["test", "workflow"]
157
158
  assert "display_context" in events[1]["body"], events[1]["body"]
158
159
  display_context = events[1]["body"]["display_context"]
159
160
  assert "node_displays" in display_context
@@ -164,6 +165,7 @@ class Workflow(BaseWorkflow):
164
165
  assert isinstance(display_context["workflow_outputs"], dict)
165
166
  assert "foo" in display_context["workflow_outputs"]
166
167
  assert events[2]["name"] == "workflow.execution.fulfilled", events[2]
168
+ assert events[2]["body"]["workflow_definition"]["module"] == ["test", "workflow"]
167
169
 
168
170
  assert events[3] == {
169
171
  "id": mock.ANY,