Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions sdk/python/test/compilation/pipeline_compilation_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
flipcoin_pipeline as flip_coin
from test_data.sdk_compiled_pipelines.valid.critical.loop_consume_upstream import \
loop_consume_upstream
from test_data.sdk_compiled_pipelines.valid.critical.missing_kubernetes_optional_inputs import \
missing_kubernetes_optional_inputs_pipeline
from test_data.sdk_compiled_pipelines.valid.critical.mixed_parameters import \
crust as mixed_parameters_pipeline
from test_data.sdk_compiled_pipelines.valid.critical.modelcar.modelcar import \
Expand Down Expand Up @@ -353,6 +355,13 @@ def __repr__(self) -> str:
compiled_file_name='parameter_oneof.yaml',
expected_compiled_file_path=f'{_VALID_PIPELINE_FILES}/critical/parameter_oneof.yaml'
),
TestData(
pipeline_name='missing-kubernetes-optional-inputs',
pipeline_func=missing_kubernetes_optional_inputs_pipeline,
pipline_func_args=None,
compiled_file_name='missing_kubernetes_optional_inputs.yaml',
expected_compiled_file_path=f'{_VALID_PIPELINE_FILES}/critical/missing_kubernetes_optional_inputs.yaml'
),
TestData(
pipeline_name='pipeline-with-env',
pipeline_func=env_pipeline,
Expand Down
Loading
Loading