Skip to content

Commit

Permalink
skip cache test
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbuniat committed Oct 13, 2020
1 parent 2429feb commit f7eef74
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hub/store/tests/test_cache.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from hub.store.cache import Cache
import zarr
import time
import pytest


class SlowStore(zarr.MemoryStore):
Expand All @@ -15,6 +16,7 @@ def __setitem__(self, key, value, **kwargs):
super(SlowStore, self).__setitem__(key, value, **kwargs)


@pytest.mark.skipif(True, reason="requires ")
def test_cache():
store = SlowStore()
store = Cache(store, max_size=1000000)
Expand Down

0 comments on commit f7eef74

Please sign in to comment.