Skip to content

Commit

Permalink
Marks some too many open files tests as slow
Browse files Browse the repository at this point in the history
  • Loading branch information
pwolfram committed Mar 28, 2017
1 parent c1071ba commit 0c57fd7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xarray/tests/test_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

from . import (TestCase, requires_scipy, requires_netCDF4, requires_pydap,
requires_scipy_or_netCDF4, requires_dask, requires_h5netcdf,
requires_pynio, has_netCDF4, has_scipy, assert_allclose)
requires_pynio, has_netCDF4, has_scipy, assert_allclose, slow)
from .test_dataset import create_test_data

try:
Expand Down Expand Up @@ -1112,16 +1112,19 @@ def test_3_autoclose_pynio(self):

@requires_dask
@requires_netCDF4
@slow
def test_1_open_large_num_files_netcdf4(self):
self.validate_open_mfdataset_large_num_files(engine=['netcdf4'])

@requires_dask
@requires_scipy
@slow
def test_2_open_large_num_files_scipy(self):
self.validate_open_mfdataset_large_num_files(engine=['scipy'])

@requires_dask
@requires_pynio
@slow
def test_3_open_large_num_files_pynio(self):
self.validate_open_mfdataset_large_num_files(engine=['pynio'])

Expand Down

0 comments on commit 0c57fd7

Please sign in to comment.