tests/testthat/_snaps/dags.md

DAGs work as expected

Code
  dag$get_network()
Output
  # A tibble: 9 x 2
    from      to         
    <chr>     <chr>      
  1 primary   with_inputs
  2 trunk     branch1    
  3 trunk     branch2    
  4 branch1   subbranch1 
  5 branch2   subbranch2 
  6 start     high_road  
  7 start     low_road   
  8 high_road end        
  9 low_road  end

Even if a downstream pipeline is 'scheduled' it doesn't run unless the upstream component does

Code
  schedule$get_status()$invoked
Output
  [1] FALSE FALSE
Code
  schedule$get_status()$invoked
Output
  [1] FALSE FALSE FALSE

Even if a downstream pipeline is 'scheduled' it runs if the upstream component does

Code
  schedule$get_status()$invoked
Output
  [1] TRUE TRUE
Code
  schedule$get_status()$invoked
Output
  [1] TRUE TRUE TRUE


Try the maestro package in your browser

Any scripts or data that you put into this service are public.

maestro documentation built on June 8, 2025, 10:44 a.m.