Ron Gross
12/22/2020, 8:03 AMwith caseupstream_tasksA -> B -> CA -> CBwith caseCupstream_tasksBJim Crist-Harif
12/22/2020, 3:47 PMskip_on_upstream_skip=FalseCCABBBBmergeCAfrom prefect.tasks.control_flow import merge
from prefect import case, task
@task
def noop():
    pass
with case(cond, True):
    b1 = B()
with case(cond, False):
    b2 = noop()
b = merge(b1, b2)Jim Crist-Harif
12/22/2020, 3:49 PMprefect-communityprefect-serverRon Gross
12/22/2020, 5:42 PM