Skip to content

Commit fdd937b

Browse files
committed
Skip test
1 parent ca34657 commit fdd937b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/tests/integration/arcticdb/version_store/test_num_storage_operations.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
dataframe_simulate_arcticdb_update_static,
1414
)
1515
import arcticdb.toolbox.query_stats as qs
16-
16+
from tests.util.mark import MACOS
1717

1818
def sum_operations(stats):
1919
"""Sum up all operations from query stats.
@@ -311,6 +311,7 @@ def get_num_data_keys_intersecting_date_range(index, start, end, exclude_fully_i
311311
"row_range_start, row_range_end", [(0, 0), (5, 5), (0, 1), (1, 2), (5, 6), (0, 4), (1, 5), (0, 6), (6, 15), (0, 15)]
312312
)
313313
@pytest.mark.parametrize("dynamic_schema", [True, False])
314+
@pytest.mark.skipif(MACOS, reason="Flaky stuck")
314315
def test_row_range_num_reads(s3_store_factory, clear_query_stats, dynamic_schema, row_range_start, row_range_end):
315316
with config_context("VersionMap.ReloadInterval", 0):
316317
lib = s3_store_factory(column_group_size=2, segment_row_size=2, dynamic_schema=dynamic_schema)
@@ -339,6 +340,7 @@ def test_row_range_num_reads(s3_store_factory, clear_query_stats, dynamic_schema
339340

340341
@pytest.mark.parametrize("date_range_start, date_range_end", date_ranges_to_test)
341342
@pytest.mark.parametrize("dynamic_schema", [True, False])
343+
@pytest.mark.skipif(MACOS, reason="Flaky stuck")
342344
def test_date_range_num_reads(s3_store_factory, clear_query_stats, dynamic_schema, date_range_start, date_range_end):
343345
with config_context("VersionMap.ReloadInterval", 0):
344346
lib = s3_store_factory(column_group_size=2, segment_row_size=2, dynamic_schema=dynamic_schema)

0 commit comments

Comments
 (0)