Skip to content

Commit

Permalink
Remove deadline for two flaky tests (#1894)
Browse files Browse the repository at this point in the history
* Remove deadline for two flaky tests
  • Loading branch information
jdblischak authored Jan 31, 2024
1 parent 6f02f34 commit 7f0598e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tiledb/tests/test_multi_index-hp.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import warnings

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

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

0 comments on commit 7f0598e

Please sign in to comment.