Skip to content

Commit 8be1a0f

Browse files
committed
Stop using 4 processors in test
1 parent baa2229 commit 8be1a0f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

tests/runtests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ if [ $PY -eq 3 ]; then
2525
# mpiexec -n 12 python -m coverage test_mpifft.py
2626
mpiexec -n 2 python -m coverage run spectral_dns_solver.py
2727
mpiexec -n 2 python -m coverage run -m test_io
28-
mpiexec -n 4 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
30-
mpiexec -n 4 python -m coverage run -m test_darray
30+
#mpiexec -n 4 python -m coverage run -m test_darray
3131

3232
python -m coverage combine
3333

tests/test_io.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,6 @@ def test_4D(backend, forward_output):
168168
import netCDF4
169169
except ImportError:
170170
skip['netcdf4'] = True
171-
skip['hdf5'] = True
172171
for bnd in ('hdf5', 'netcdf4'):
173172
if not skip[bnd]:
174173
forw_output = [False]

0 commit comments

Comments
 (0)