Disable step unconditionally

Is that possible to disable step without any condition

e.g. I need to disable step2

MySteps:
    title: IT
    stage: test
    type: parallel
    fail_fast: false
    steps:
      step1:
        title: AppStart
        stage: test
        ....

      step2:
        title: End point test
        stage: prepare
        .....

Can you explain a bit what is your need here?

If you don’t want to run a step unconditionally, why not remove/comment it altogether? What is the need of having a step in the pipeline that never gets executed?

Yes, I agree. However I would have thought there is an option param like “disabled” inbuilt.

So as you mentioned commenting is the best option as I need this just for testing. Because I don’t want to run all the steps just for test one step in some cases.