Skip to content

Commit d3cfaec

Browse files
committed
Skipping netcdf4 test
1 parent 196837f commit d3cfaec

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tests/runtests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ if [ $PY -eq 3 ]; then
2424
# mpiexec -n 8 python -m coverage test_mpifft.py
2525
# mpiexec -n 12 python -m coverage test_mpifft.py
2626
mpiexec -n 2 python -m coverage run spectral_dns_solver.py
27-
#mpiexec -n 2 python -m coverage run -m test_io
28-
#mpiexec -n 4 python -m coverage run -m test_io
27+
mpiexec -n 2 python -m coverage run -m test_io
28+
mpiexec -n 4 python -m coverage run -m test_io
2929
mpiexec -n 2 python -m coverage run -m test_darray
3030
mpiexec -n 4 python -m coverage run -m test_darray
3131

tests/test_io.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def test_2D(backend, forward_output):
4444
hfile.write(1, {'u': [u]}, as_scalar=True)
4545
u.write(hfile, 'u', 2, as_scalar=True)
4646
u.write('t'+filename, 'u', 0)
47-
#u.write('t'+filename, 'u', 0, [slice(None), 3])
47+
u.write('t'+filename, 'u', 0, [slice(None), 3])
4848

4949
if not forward_output and backend == 'hdf5' and comm.Get_rank() == 0:
5050
generate_xdmf(filename)
@@ -168,6 +168,7 @@ def test_4D(backend, forward_output):
168168
import netCDF4
169169
except ImportError:
170170
skip['netcdf4'] = True
171+
skip['netcdf4'] = True
171172
for bnd in ('hdf5', 'netcdf4'):
172173
if not skip[bnd]:
173174
forw_output = [False]

0 commit comments

Comments
 (0)