Project

General

Profile

action #64667

Updated by mkittler about 4 years ago

### problem / current behavior 

 In a context of `START_DIRECTLY_AFTER_TEST`, if a child is cancelled, then other childs are skipped. 
 Example:  
 * B and C have START_DIRECTLY_AFTER_TEST=A 

        ---> B 
      / 
     A 
      \ 
        ---> C 
 * A ran successfully, B is running and C is waiting that B is done to start. 
 * If I cancel B, then C will not be run and is skipped. 

 ### expected behavior 

 As B and C are independents/siblings, independents, cancelling B should start C. 

Back