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 30, 2017
1 parent c553804 commit 9ee525f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion xarray/tests/test_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@

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, flakey)
requires_pynio, has_netCDF4, has_scipy, assert_allclose, flakey,
slow)
from .test_dataset import create_test_data

try:
Expand Down Expand Up @@ -1113,18 +1114,21 @@ def test_3_autoclose_pynio(self):
@requires_dask
@requires_netCDF4
@flakey
@slow
def test_1_open_large_num_files_netcdf4(self):
self.validate_open_mfdataset_large_num_files(engine=['netcdf4'])

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

@requires_dask
@requires_pynio
@flakey
@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 9ee525f

Please sign in to comment.