Skip to content

Commit

Permalink
Fix dask test
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Feb 14, 2025
1 parent ade5c64 commit a8cbdf8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tiledb/tests/test_dask.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import sys
import warnings
from datetime import datetime

import numpy as np
import pytest
Expand Down Expand Up @@ -44,9 +42,7 @@ def _make_multiattr_2d(self, uri, shape=(0, 100), tile=10):

tiledb.DenseArray.create(uri, schema)

@pytest.mark.flaky(
reruns=3, reruns_delay=2, only_rerun=(CommClosedError, StreamClosedError)
)
@pytest.mark.flaky(reruns=3, reruns_delay=2, rerun_except="TileDBError")
@pytest.mark.filterwarnings("ignore:There is no current event loop")
def test_dask_multiattr_2d(self):
uri = self.path("multiattr")
Expand Down

0 comments on commit a8cbdf8

Please sign in to comment.