Skip to content

Commit f99313c

Browse files
committed
Add xfail for #1586
1 parent 72cf0e7 commit f99313c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

xarray/tests/test_combine.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
import numpy as np
77
import pandas as pd
8+
import pytest
89

910
from xarray import Dataset, DataArray, auto_combine, concat, Variable
1011
from xarray.core.pycompat import iteritems, OrderedDict
@@ -268,6 +269,7 @@ def test_concat(self):
268269
with self.assertRaisesRegexp(ValueError, 'not a valid argument'):
269270
concat([foo, bar], dim='w', data_vars='minimal')
270271

272+
@pytest.mark.xfail(reason='https://github.com/pydata/xarray/issues/1586')
271273
def test_concat_encoding(self):
272274
# Regression test for GH1297
273275
ds = Dataset({'foo': (['x', 'y'], np.random.random((2, 3))),

0 commit comments

Comments
 (0)