File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -116,4 +116,4 @@ jobs:
116
116
run : echo "Running on $(nproc) cores"
117
117
- name : Run tests with pytest
118
118
run : |
119
- uv run mpiexec --timeout 120 --use-hwthread-cpus -n 4 pytest -m parallel test/parallel -x
119
+ uv run mpiexec --timeout 120 --use-hwthread-cpus -n 4 pytest -m parallel test/parallel/test_lc_mpi.py::test_write_some_missing -s
Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ def write(self, file: h5py.File | h5py.Group):
85
85
child_names = list (self .children .keys ())
86
86
child_names .sort ()
87
87
for name in child_names :
88
+ print (f"Writing dataset { name } " )
88
89
self .children [name ].write (file [name ])
89
90
90
91
@@ -114,7 +115,9 @@ def write(self, group: h5py.Group):
114
115
names = list (self .columns .keys ())
115
116
names .sort ()
116
117
for colname in names :
118
+ print (f"Writing column { colname } " )
117
119
self .columns [colname ].write (data_group )
120
+ print ("writing links" )
118
121
if self .links :
119
122
link_group = group ["data_linked" ]
120
123
link_names = list (self .links .keys ())
@@ -123,9 +126,11 @@ def write(self, group: h5py.Group):
123
126
for name in link_names :
124
127
self .links [name ].write (link_group )
125
128
129
+ print ("writing spatial index" )
126
130
if self .spatial_index is not None :
127
131
index_group = group ["index" ]
128
132
self .spatial_index .write (index_group )
133
+ print ("done" )
129
134
130
135
131
136
class EmptyColumnWriter :
You can’t perform that action at this time.
0 commit comments