File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 64
64
redis-image : " redis/redis-stack-server:7.2.0-v0"
65
65
redis-py : " 5.0.0"
66
66
lupa : true
67
- json : true
67
+ extra : true
68
68
coverage : true
69
69
hypothesis : true
70
70
@@ -99,11 +99,11 @@ jobs:
99
99
- name : Install lupa
100
100
if : ${{ matrix.lupa }}
101
101
run : |
102
- poetry run pip install fakeredis[lua]
102
+ poetry run pip install " fakeredis[lua]"
103
103
- name : Install json
104
- if : ${{ matrix.json }}
104
+ if : ${{ matrix.extra }}
105
105
run : |
106
- poetry run pip install fakeredis[json]
106
+ poetry run pip install " fakeredis[json,bf]"
107
107
- name : Get version
108
108
id : getVersion
109
109
shell : bash
Original file line number Diff line number Diff line change 3
3
4
4
from fakeredis import _msgs as msgs
5
5
6
+ json_tests = pytest .importorskip ("pybloom_live" )
7
+
6
8
7
9
def test_bf_add (r : redis .Redis ):
8
10
assert r .bf ().add ('key' , 'value' ) == 1
You can’t perform that action at this time.
0 commit comments