Skip to content

Commit b8974d7

Browse files
committed
chore: try printing out full issue
1 parent 93d48a7 commit b8974d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_regression/test_v2_dtype_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def test_roundtrip_v2(source_array_v2: ArrayV2, tmp_path: Path, script_path: Pat
211211
capture_output=True,
212212
text=True,
213213
)
214-
assert copy_op.returncode == 0
214+
assert copy_op.returncode == 0, "stdout " + copy_op.stdout + "\n stderr" + copy_op.stderr
215215
out_array = zarr.open_array(store=out_path, mode="r", zarr_format=2)
216216
assert source_array_v2.metadata.to_dict() == out_array.metadata.to_dict()
217217
assert np.array_equal(source_array_v2[:], out_array[:])

0 commit comments

Comments
 (0)