Skip to content

Commit d53c981

Browse files
authored
pytest.mark.xfail Until 2022 July 19 (#1206)
* `DeprecationWarning` is being thrown by Dask but should be fixed by dask/distributed#6163 * Temporarily disabling this test for two weeks as to not trigger nightly test failures
1 parent ff22b8a commit d53c981

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tiledb/tests/test_dask.py

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

33
da = pytest.importorskip("dask.array")
44

5+
from datetime import datetime
56
import sys
67
import tiledb
78
from tiledb.tests.common import DiskTestCase
@@ -45,6 +46,13 @@ def _make_multiattr_2d(self, uri, shape=(0, 100), tile=10):
4546

4647
tiledb.DenseArray.create(uri, schema)
4748

49+
@pytest.mark.xfail(
50+
datetime.now() < datetime(2022, 7, 19),
51+
reason=(
52+
"`DeprecationWarning` being thrown by Dask but will be fixed by "
53+
"https://github.com/dask/distributed/issues/6163"
54+
),
55+
)
4856
@pytest.mark.filterwarnings("ignore:There is no current event loop")
4957
def test_dask_multiattr_2d(self):
5058
uri = self.path("multiattr")

0 commit comments

Comments
 (0)