File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ tiledb:
2929#  Data directory for downloading GEDI data
3030data_dir : ' ' 
3131
32+ #  Progress directory for monitoring processing
33+ progress_dir : ' ' 
34+ 
3235#  Configuration for accessing NASA's Earthdata Search API to query granule data.
3336earth_data_info :
3437 CMR_URL : " https://cmr.earthdata.nasa.gov/search/granules.json" 
Original file line number Diff line number Diff line change @@ -170,6 +170,7 @@ def close(self):
170170def  config_file (tmp_path ):
171171    cfg  =  {
172172        "data_dir" : str (tmp_path  /  "data" ),
173+         "progress_dir" : str (tmp_path  /  "progress" ),
173174        "earth_data_info" : {"foo" : "bar" },
174175        "tiledb" : {
175176            "chunk_size" : 100 ,
@@ -469,6 +470,7 @@ def test_process_granules_invalid_tiling_raises(
469470    p  =  Path (config_file )
470471    cfg  =  {
471472        "data_dir" : str (p .parent  /  "data" ),
473+         "progress_dir" : str (p .parent  /  "progress" ),
472474        "earth_data_info" : {},
473475        "tiledb" : {"temporal_batching" : "monthly" },  # invalid on purpose 
474476    }
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments