vellum-workflow-server 1.2.0.post1__tar.gz → 1.2.0.post2__tar.gz
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.
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/PKG-INFO +1 -1
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/pyproject.toml +1 -1
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/api/tests/test_workflow_view.py +3 -1
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/api/workflow_view.py +2 -2
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/README.md +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/__init__.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/api/__init__.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/api/auth_middleware.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/api/healthz_view.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/api/tests/__init__.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/api/tests/test_input_display_mapping.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/api/tests/test_workflow_view_stream_workflow_route.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/code_exec_runner.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/config.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/core/__init__.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/core/cancel_workflow.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/core/events.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/core/executor.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/core/utils.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/core/workflow_executor_context.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/server.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/start.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/__init__.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/exit_handler.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/log_proxy.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/oom_killer.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/sentry.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/system_utils.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/tests/__init__.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/tests/test_sentry_integration.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/tests/test_system_utils.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/tests/test_utils.py +0 -0
- {vellum_workflow_server-1.2.0.post1 → vellum_workflow_server-1.2.0.post2}/src/workflow_server/utils/utils.py +0 -0
|
@@ -456,8 +456,10 @@ def test_serialize_route__with__workflow():
|
|
|
456
456
|
# THEN we should get a successful response
|
|
457
457
|
assert response.status_code == 200
|
|
458
458
|
|
|
459
|
-
# AND the response should contain
|
|
459
|
+
# AND the response should contain the full WorkflowSerializationResult
|
|
460
460
|
assert "exec_config" in response.json
|
|
461
|
+
assert "errors" in response.json
|
|
462
|
+
assert "dataset" in response.json or response.json.get("dataset") is None
|
|
461
463
|
exec_config = response.json["exec_config"]
|
|
462
464
|
|
|
463
465
|
# AND the exec_config should have workflow_raw_data
|
|
@@ -446,10 +446,10 @@ def serialize_route() -> Response:
|
|
|
446
446
|
|
|
447
447
|
try:
|
|
448
448
|
sys.meta_path.append(virtual_finder)
|
|
449
|
-
|
|
449
|
+
result = BaseWorkflowDisplay.serialize_module(namespace)
|
|
450
450
|
|
|
451
451
|
return Response(
|
|
452
|
-
json.dumps(
|
|
452
|
+
json.dumps(result.model_dump()),
|
|
453
453
|
status=200,
|
|
454
454
|
content_type="application/json",
|
|
455
455
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|