Skip to content

Test against dask master and xfail current failure #2324

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ matrix:
- libhdf5-serial-dev
- netcdf-bin
- libnetcdf-dev
- python: 3.6
env: CONDA_ENV=py36-dask-dev
- python: 3.6
env: CONDA_ENV=py36-pandas-dev
- python: 3.6
Expand Down
6 changes: 5 additions & 1 deletion ci/requirements-py36-dask-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@ dependencies:
- flake8
- numpy
- pandas
- seaborn
- scipy
- seaborn
- toolz
- rasterio
- bottleneck
- zarr
- pseudonetcdf>=3.0.1
- pip:
- coveralls
- pytest-cov
Expand Down
6 changes: 6 additions & 0 deletions xarray/tests/test_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -1665,6 +1665,12 @@ def test_getitem_fancy(self):
def test_getitem_1d_fancy(self):
super(TestVariableWithDask, self).test_getitem_1d_fancy()

def test_equals_all_dtypes(self):
import dask
if '0.18.2' <= LooseVersion(dask.__version__) < '0.18.3':
pytest.xfail('https://github.com/pydata/xarray/issues/2318')
super(TestVariableWithDask, self).test_equals_all_dtypes()

def test_getitem_with_mask_nd_indexer(self):
import dask.array as da
v = Variable(['x'], da.arange(3, chunks=3))
Expand Down