Skip to content

Commit eec8b16

Browse files
Adding print statements for CI debugging
As I can't reproduce the failing unit tests locally
1 parent b3dc1e0 commit eec8b16

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tests/test_fieldset.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,7 @@ def test_fieldset_describe_backends(tmp_path):
431431
coords=ds_coords,
432432
)
433433
fieldset = FieldSet.from_sgrid_conventions(ds_fset)
434+
print(fieldset.describe())
434435

435436
io = StringIO()
436437
expected = """\
@@ -451,6 +452,7 @@ def test_fieldset_describe_backends(tmp_path):
451452

452453
# Also run with WindowedArray backend
453454
fieldset = fieldset.to_windowed_arrays()
455+
print(fieldset.describe())
454456

455457
io = StringIO()
456458
expected = """\
@@ -473,6 +475,8 @@ def test_fieldset_describe_backends(tmp_path):
473475
ds_fset.to_zarr(path)
474476
ds_zarr = open_raw_zarr(path)
475477
fieldset = FieldSet.from_sgrid_conventions(ds_zarr)
478+
print(fieldset.describe())
479+
476480
io = StringIO()
477481
expected = """\
478482
| Name | Type | Grid number | Interp method / value | Parcels backend |

0 commit comments

Comments
 (0)