Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Feb 25, 2025
1 parent ba508bb commit 2302ec6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tiledb/tests/test_multi_index-hp.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from hypothesis import assume, given
from hypothesis import strategies as st
from numpy.testing import assert_array_equal
import sys

import tiledb
from tiledb import SparseArray
Expand Down Expand Up @@ -103,7 +104,8 @@ def test_multi_index_two_way_query_printer(self, ranges):
global stored_test_cases
self.stored_test_cases.append(ranges)
assert isinstance(ranges, list)
print(ranges)
# print to error stream to capture in logs
print(ranges, file=sys.stderr)

@given(
order=st.sampled_from(["C", "F"]),
Expand Down

0 comments on commit 2302ec6

Please sign in to comment.