Skip to content
Merged
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
5 changes: 0 additions & 5 deletions tests/unit/array/mixins/test_getset.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import gc

import numpy as np
import pytest
import scipy.sparse
Expand Down Expand Up @@ -514,9 +512,6 @@ def test_getset_subindex(storage, config):
],
)
def test_init_subindex(storage, config):
if storage == 'redis':
gc.collect()

num_top_level_docs = 5
num_chunks_per_doc = 3
subindex_configs = (
Expand Down
4 changes: 0 additions & 4 deletions tests/unit/array/test_sequence.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import gc
import tempfile
import uuid

Expand Down Expand Up @@ -91,9 +90,6 @@ def test_context_manager_from_disk(storage, config, start_storage, tmpdir, tmpfi
config = config
update_config_inplace(config, tmpdir, tmpfile)

if storage == 'redis':
gc.collect()

da = DocumentArray(storage=storage, config=config)

with da as da_open:
Expand Down