Skip to content

Commit b314f07

Browse files
committed
Marks too many open files as slow
1 parent c1071ba commit b314f07

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

xarray/tests/test_backends.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
from . import (TestCase, requires_scipy, requires_netCDF4, requires_pydap,
2828
requires_scipy_or_netCDF4, requires_dask, requires_h5netcdf,
29-
requires_pynio, has_netCDF4, has_scipy, assert_allclose)
29+
requires_pynio, has_netCDF4, has_scipy, assert_allclose, slow)
3030
from .test_dataset import create_test_data
3131

3232
try:
@@ -1112,16 +1112,19 @@ def test_3_autoclose_pynio(self):
11121112

11131113
@requires_dask
11141114
@requires_netCDF4
1115+
@slow
11151116
def test_1_open_large_num_files_netcdf4(self):
11161117
self.validate_open_mfdataset_large_num_files(engine=['netcdf4'])
11171118

11181119
@requires_dask
11191120
@requires_scipy
1121+
@slow
11201122
def test_2_open_large_num_files_scipy(self):
11211123
self.validate_open_mfdataset_large_num_files(engine=['scipy'])
11221124

11231125
@requires_dask
11241126
@requires_pynio
1127+
@slow
11251128
def test_3_open_large_num_files_pynio(self):
11261129
self.validate_open_mfdataset_large_num_files(engine=['pynio'])
11271130

0 commit comments

Comments
 (0)