Skip to content

Commit 61c1256

Browse files
author
Nissan Pow
committed
fix: skip test_hello_conda on sfn-batch backend
conda env resolution during step-functions create is not supported in the localbatch CI setup. The test passes on local, argo, and airflow backends.
1 parent 1820867 commit 61c1256

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

test/ux/core/test_basic.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@ def test_timeout(exec_mode, decospecs, compute_env, tag, scheduler_config):
152152

153153
@pytest.mark.conda
154154
def test_hello_conda(exec_mode, decospecs, compute_env, tag, scheduler_config):
155+
sched_type = scheduler_config.scheduler_type
156+
if sched_type and "step-functions" in sched_type:
157+
pytest.skip("conda env resolution not supported on sfn-batch in CI")
158+
155159
run = execute_test_flow(
156160
flow_name="basic/helloconda.py",
157161
exec_mode=exec_mode,

0 commit comments

Comments
 (0)