Skip to content

Commit 8e9123b

Browse files
committed
fix:mkdocs.yml
1 parent e98767e commit 8e9123b

File tree

2 files changed

+31
-37
lines changed

2 files changed

+31
-37
lines changed

mkdocs.yml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -60,36 +60,36 @@ nav:
6060
- Dragonfly support: dragonfly-support.md
6161
- Valkey support: valkey-support.md
6262
- Supported commands:
63-
- 'supported-commands/index.md'
64-
- Redis commands:
65-
- Bitmap: supported-commands/Redis/BITMAP.md
66-
- Cluster: supported-commands/Redis/CLUSTER.md
67-
- Connection: supported-commands/Redis/CONNECTION.md
68-
- Generic: supported-commands/Redis/GENERIC.md
69-
- Geospatial indices: supported-commands/Redis/GEO.md
70-
- Bitmap: supported-commands/Redis/BITMAP.md
71-
- Hash: supported-commands/Redis/HASH.md
72-
- HyperLogLog: supported-commands/Redis/HYPERLOGLOG.md
73-
- List: supported-commands/Redis/LIST.md
74-
- Pub/Sub: supported-commands/Redis/PUBSUB.md
75-
- Scripting: supported-commands/Redis/SCRIPTING.md
76-
- Server: supported-commands/Redis/SERVER.md
77-
- Set: supported-commands/Redis/SET.md
78-
- Sorted Set: supported-commands/Redis/SORTEDSET.md
79-
- Stream: supported-commands/Redis/STREAM.md
80-
- String: supported-commands/Redis/STRING.md
81-
- Transactions: supported-commands/Redis/TRANSACTIONS.md
82-
- RedisJSON commands: supported-commands/RedisJson/JSON.md
83-
- Time Series commands: supported-commands/RedisTimeSeries/TIMESERIES.md
84-
- Probabilistic commands:
85-
- Bloom Filter: supported-commands/RedisBloom/BF.md
86-
- Cuckoo Filter: supported-commands/RedisBloom/CF.md
87-
- Count-Min Sketch: supported-commands/RedisBloom/CMS.md
88-
- t-digest: supported-commands/RedisBloom/TDIGEST.md
89-
- top-k: supported-commands/RedisBloom/TOPK.md
90-
- Search commands: supported-commands/RedisSearch/SEARCH.md
91-
- Suggestion commands: supported-commands/RedisSearch/SUGGESTION.md
92-
- Dragonfly commands: supported-commands/DRAGONFLY.md
63+
- 'supported-commands/index.md'
64+
- Redis commands:
65+
- Bitmap: supported-commands/Redis/BITMAP.md
66+
- Cluster: supported-commands/Redis/CLUSTER.md
67+
- Connection: supported-commands/Redis/CONNECTION.md
68+
- Generic: supported-commands/Redis/GENERIC.md
69+
- Geospatial indices: supported-commands/Redis/GEO.md
70+
- Bitmap: supported-commands/Redis/BITMAP.md
71+
- Hash: supported-commands/Redis/HASH.md
72+
- HyperLogLog: supported-commands/Redis/HYPERLOGLOG.md
73+
- List: supported-commands/Redis/LIST.md
74+
- Pub/Sub: supported-commands/Redis/PUBSUB.md
75+
- Scripting: supported-commands/Redis/SCRIPTING.md
76+
- Server: supported-commands/Redis/SERVER.md
77+
- Set: supported-commands/Redis/SET.md
78+
- Sorted Set: supported-commands/Redis/SORTEDSET.md
79+
- Stream: supported-commands/Redis/STREAM.md
80+
- String: supported-commands/Redis/STRING.md
81+
- Transactions: supported-commands/Redis/TRANSACTIONS.md
82+
- RedisJSON commands: supported-commands/RedisJson/JSON.md
83+
- Time Series commands: supported-commands/RedisTimeSeries/TIMESERIES.md
84+
- Probabilistic commands:
85+
- Bloom Filter: supported-commands/RedisBloom/BF.md
86+
- Cuckoo Filter: supported-commands/RedisBloom/CF.md
87+
- Count-Min Sketch: supported-commands/RedisBloom/CMS.md
88+
- t-digest: supported-commands/RedisBloom/TDIGEST.md
89+
- top-k: supported-commands/RedisBloom/TOPK.md
90+
- Search commands: supported-commands/RedisSearch/SEARCH.md
91+
- Suggestion commands: supported-commands/RedisSearch/SUGGESTION.md
92+
- Dragonfly commands: supported-commands/DRAGONFLY.md
9393
- Guides:
9494
- Implementing support for a command: guides/implement-command.md
9595
- Write a new test case: guides/test-case.md
@@ -123,7 +123,7 @@ theme:
123123
# - content.tabs.link
124124
- content.tooltips
125125
# - header.autohide
126-
# - navigation.expand
126+
# - navigation.expand
127127
- navigation.footer
128128
- navigation.indexes
129129
# - navigation.instant

test/test_mixins/test_bitmap_commands.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ def test_bitcount_does_not_exist(r: redis.Redis):
3434
assert res == 0
3535

3636

37-
@pytest.mark.max_server("7.2")
38-
def test_bitcount_error_v6(r: redis.Redis):
39-
r = raw_command(r, b"BITCOUNT", b"", b"", b"")
40-
assert r == 0
41-
42-
4337
def test_multiple_bits_set(r: redis.Redis):
4438
r.setbit("foo", 1, 1)
4539
r.setbit("foo", 3, 1)

0 commit comments

Comments
 (0)