Skip to content

Commit 93d1f3c

Browse files
droctothorpeCarterFendleyzazulam
committed
Enable nested pipeline IO large tests in CI
Signed-off-by: droctothorpe <mythicalsunlight@gmail.com> Co-authored-by: CarterFendley <carter.fendley@gmail.com> Co-authored-by: zazulam <m.zazula@gmail.com>
1 parent d15884a commit 93d1f3c

File tree

1 file changed

+11
-19
lines changed

1 file changed

+11
-19
lines changed

samples/v2/sample_test.py

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@
2727
import pipeline_container_no_input
2828
import pipeline_with_env
2929
import producer_consumer_param
30+
import subdagio
3031
import two_step_pipeline_containerized
31-
# import subdagio
32-
3332

3433
_MINUTE = 60 # seconds
3534
_DEFAULT_TIMEOUT = 5 * _MINUTE
@@ -65,23 +64,16 @@ def test(self):
6564
# TestCase(pipeline_func=pipeline_with_volume.pipeline_with_volume),
6665
# TestCase(pipeline_func=pipeline_with_secret_as_volume.pipeline_secret_volume),
6766
# TestCase(pipeline_func=pipeline_with_secret_as_env.pipeline_secret_env),
68-
69-
# This next set of tests needs to be commented out until issue
70-
# https://github.com/kubeflow/pipelines/issues/11239#issuecomment-2374792592
71-
# is addressed or the driver image that is used in CI is updated
72-
# because otherwise the tests are run against incompatible version
73-
# of the driver. In the meantime, for local validation, these tests
74-
# can be executed (once you've manually deployed an updated driver
75-
# image).
76-
77-
# TestCase(pipeline_func=subdagio.parameter.crust),
78-
# TestCase(pipeline_func=subdagio.parameter_cache.crust),
79-
# TestCase(pipeline_func=subdagio.mixed_parameters.crust),
80-
# TestCase(pipeline_func=subdagio.multiple_parameters_namedtuple.crust),
81-
# TestCase(pipeline_func=subdagio.parameter_oneof.crust),
82-
# TestCase(pipeline_func=subdagio.artifact_cache.crust),
83-
# TestCase(pipeline_func=subdagio.artifact.crust),
84-
# TestCase(pipeline_func=subdagio.multiple_artifacts_namedtuple.crust),
67+
TestCase(pipeline_func=subdagio.parameter.crust),
68+
TestCase(pipeline_func=subdagio.parameter_cache.crust),
69+
TestCase(pipeline_func=subdagio.mixed_parameters.crust),
70+
TestCase(
71+
pipeline_func=subdagio.multiple_parameters_namedtuple.crust),
72+
TestCase(pipeline_func=subdagio.parameter_oneof.crust),
73+
TestCase(pipeline_func=subdagio.artifact_cache.crust),
74+
TestCase(pipeline_func=subdagio.artifact.crust),
75+
TestCase(
76+
pipeline_func=subdagio.multiple_artifacts_namedtuple.crust),
8577
]
8678

8779
with ThreadPoolExecutor() as executor:

0 commit comments

Comments
 (0)