We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68993e9 commit fa7368eCopy full SHA for fa7368e
test/test_mixins/test_list_commands.py
@@ -522,7 +522,6 @@ def test_brpoplpush_multi_keys(r: redis.Redis):
522
assert r.lrem("bar", -1, "two") == 1
523
524
525
-@pytest.mark.unsupported_server_types("dragonfly") # TODO Should this be supported?
526
def test_brpoplpush_wrong_type(r: redis.Redis):
527
r.set("foo", "bar")
528
r.rpush("list", "element")
@@ -656,7 +655,6 @@ def test_lpos(r: redis.Redis):
656
655
assert r.lpos("a", "c", count=0, maxlen=7, rank=2) == [6]
657
658
659
-@pytest.mark.unsupported_server_types("dragonfly")
660
@pytest.mark.min_server("7")
661
def test_blmpop(r: redis.Redis):
662
r.rpush("a", "1", "2", "3", "4", "5")
@@ -669,7 +667,6 @@ def test_blmpop(r: redis.Redis):
669
667
assert r.blmpop(1, "2", "foo", "bar", direction="RIGHT") is None
670
668
671
672
673
674
def test_lmpop(r: redis.Redis):
675
r.rpush("foo", "1", "2", "3", "4", "5")
0 commit comments