@@ -42,6 +42,9 @@ def obs() -> pl.DataFrame:
4242 "index" : pl .Series ([0 , 1 , 2 ], dtype = pl .UInt16 ),
4343 "observations" : pl .Series ([1.0 , 1.0 , 1.0 ], dtype = pl .Float32 ),
4444 "std" : pl .Series ([0.1 , 1.0 , 10.0 ], dtype = pl .Float32 ),
45+ "east" : pl .Series ([None , None , None ], dtype = pl .Float32 ),
46+ "north" : pl .Series ([None , None , None ], dtype = pl .Float32 ),
47+ "radius" : pl .Series ([None , None , None ], dtype = pl .Float32 ),
4548 }
4649 )
4750
@@ -250,6 +253,9 @@ def test_update_handles_precision_loss_in_std_dev(tmp_path):
250253 [559437122.6211826 , 999999999.9999999 , 1.9 ],
251254 dtype = pl .Float32 ,
252255 ),
256+ "east" : pl .Series ([None , None , None ], dtype = pl .Float32 ),
257+ "north" : pl .Series ([None , None , None ], dtype = pl .Float32 ),
258+ "radius" : pl .Series ([None , None , None ], dtype = pl .Float32 ),
253259 }
254260 )
255261 },
@@ -364,6 +370,9 @@ def test_update_raises_on_singular_matrix(tmp_path):
364370 [0.33333334 , 0.14142136 , 0.0 ],
365371 dtype = pl .Float32 ,
366372 ),
373+ "east" : pl .Series ([None , None , None ], dtype = pl .Float32 ),
374+ "north" : pl .Series ([None , None , None ], dtype = pl .Float32 ),
375+ "radius" : pl .Series ([None , None , None ], dtype = pl .Float32 ),
367376 }
368377 )
369378 },
@@ -940,6 +949,9 @@ def test_gen_data_obs_data_mismatch(storage, uniform_parameter):
940949 "index" : pl .Series ([1000 ], dtype = pl .UInt16 ),
941950 "observations" : pl .Series ([1.0 ], dtype = pl .Float32 ),
942951 "std" : pl .Series ([0.1 ], dtype = pl .Float32 ),
952+ "east" : pl .Series ([None ], dtype = pl .Float32 ),
953+ "north" : pl .Series ([None ], dtype = pl .Float32 ),
954+ "radius" : pl .Series ([None ], dtype = pl .Float32 ),
943955 }
944956 )
945957
0 commit comments