Skip to content

Commit 7f0598e

Browse files
authored
Remove deadline for two flaky tests (#1894)
* Remove deadline for two flaky tests
1 parent 6f02f34 commit 7f0598e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tiledb/tests/test_multi_index-hp.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
import warnings
66

7+
import hypothesis as hp
78
import numpy as np
89
import pytest
910
from hypothesis import assume, given
@@ -85,6 +86,7 @@ def create_array(uri):
8586
order=st.sampled_from(["C", "F", "U"]),
8687
ranges=st.lists(bounded_ntuple(length=2, min_value=-100, max_value=100)),
8788
)
89+
@hp.settings(deadline=None)
8890
def test_multi_index_two_way_query(self, order, ranges, sparse_array_1d):
8991
"""This test checks the result of "direct" range queries using PyQuery
9092
against the result of `multi_index` on the same ranges."""
@@ -108,6 +110,7 @@ def test_multi_index_two_way_query(self, order, ranges, sparse_array_1d):
108110
raise
109111

110112
@given(index_obj)
113+
@hp.settings(deadline=None)
111114
def test_multi_index_inputs(self, sparse_array_1d, ind):
112115
# TODO
113116
# currently we don't have a comparison target/mockup to check

0 commit comments

Comments
 (0)