@@ -182,16 +182,16 @@ def dataset_with_same_day_runs(tmp_path) -> TIMDEXDataset:
182182 # be represented.
183183 run_params .extend (
184184 [
185- (100 , "alma" , "2025-01-01" , "full" , "index" , "run-1" ),
186- (75 , "alma" , "2025-01-01" , "full" , "index" , "run-2" ),
187- (10 , "alma" , "2025-01-01" , "daily" , "index" , "run-3" ),
188- (20 , "alma" , "2025-01-02" , "daily" , "index" , "run-4" ),
189- (5 , "alma" , "2025-01-02" , "daily" , "delete" , "run-5" ),
185+ (100 , "alma" , "2025-01-01" , "full" , "index" , "run-1" , "2025-01-01T01:00:00" ),
186+ (75 , "alma" , "2025-01-01" , "full" , "index" , "run-2" , "2025-01-01T02:00:00" ),
187+ (10 , "alma" , "2025-01-01" , "daily" , "index" , "run-3" , "2025-01-01T03:00:00" ),
188+ (20 , "alma" , "2025-01-02" , "daily" , "index" , "run-4" , "2025-01-02T01:00:00" ),
189+ (5 , "alma" , "2025-01-02" , "daily" , "delete" , "run-5" , "2025-01-02T02:00:00" ),
190190 ]
191191 )
192192
193193 for params in run_params :
194- num_records , source , run_date , run_type , action , run_id = params
194+ num_records , source , run_date , run_type , action , run_id , run_timestamp = params
195195 records = generate_sample_records (
196196 num_records ,
197197 timdex_record_id_prefix = source ,
@@ -200,6 +200,7 @@ def dataset_with_same_day_runs(tmp_path) -> TIMDEXDataset:
200200 run_type = run_type ,
201201 action = action ,
202202 run_id = run_id ,
203+ run_timestamp = run_timestamp ,
203204 )
204205 timdex_dataset .write (records )
205206
0 commit comments