Deactivate routine

Hi guys,

is it possible, while building an experiment in the builder, to “deactivate” some routines, so that I don’t have to run the whole thing everytime when I want to check on changes I made? That would save a lot of time!

Thank you

@fragmag, you can do several things.

  1. remove the routine from the flow
  2. set any loops you want to skip to nReps = 0. This way the loop will not run
  3. add a code component and at the start of the routine and add:
continueRoutine = False
1 Like

Yes, particularly option 2. Put a loop around the routines you want to exclude and set it to 0 reps

Thanks, that helps a lot!