Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,12 @@ def object_version_store_prune_previous(object_store_factory) -> NativeVersionSt


@pytest.fixture(
scope="function", params=["s3_store_factory", pytest.param("azure_store_factory", marks=AZURE_TESTS_MARK)]
scope="function",
params=[
pytest.param("s3_store_factory", marks=SIM_S3_TESTS_MARK),
pytest.param("gcp_store_factory", marks=SIM_GCP_TESTS_MARK),
pytest.param("azurite_store_factory", marks=AZURE_TESTS_MARK),
],
)
def local_object_store_factory(request):
"""
Expand Down
5 changes: 4 additions & 1 deletion python/tests/unit/arcticdb/version_store/test_fork.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ def test_parallel_reads(local_object_version_store):
symbols = ["XXX"] * 20
p = Pool(10)
local_object_version_store.write(symbols[0], df("test1"))
time.sleep(0.1) # Make sure the writes have finished, especially azurite.
if "azure" in lib.get_backing_store():
time.sleep(5) # Make sure the writes have finished, especially azurite.
else:
time.sleep(0.1)
p.map(_read_and_assert_symbol, [(local_object_version_store, s, idx) for idx, s in enumerate(symbols)])
p.close()
p.join()
Expand Down
Loading