You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python: Replace instances of Redis with Valkey (#2266)
* Replace instances of Redis with Valkey
Signed-off-by: Jonathan Louie <jonathanl@bitquilltech.com>
* Update CHANGELOG.md
Signed-off-by: Jonathan Louie <jonathanl@bitquilltech.com>
* Revert doc change for lolwut
Signed-off-by: Jonathan Louie <jonathanl@bitquilltech.com>
---------
Signed-off-by: Jonathan Louie <jonathanl@bitquilltech.com>
Signed-off-by: jonathanl-bq <72158117+jonathanl-bq@users.noreply.github.com>
Signed-off-by: Andrew Carbonetto <andrew.carbonetto@improving.com>
Co-authored-by: Andrew Carbonetto <andrew.carbonetto@improving.com>
Copy file name to clipboardExpand all lines: python/DEVELOPER.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,13 +117,13 @@ Before starting this step, make sure you've installed all software requirments.
117
117
```
118
118
>**Note:** To build the wrapper binary with debug symbols remove the --strip flag.
119
119
8. Run tests:
120
-
1. Ensure that you have installed redis-server and redis-cli on your host. You can find the Redis installation guide at the following link: [Redis Installation Guide](https://redis.io/docs/install/install-redis/install-redis-on-linux/).
120
+
1. Ensure that you have installed redis-server or valkey-server and redis-cli or valkey-cli on your host. You can find the Redis installation guide at the following link: [Redis Installation Guide](https://redis.io/docs/install/install-redis/install-redis-on-linux/). You can get Valkey from the following link: [Valkey Download](https://valkey.io/download/).
121
121
2. Validate the activation of the virtual environment from step 4 by ensuring its name (`.env`) is displayed next to your command prompt.
122
122
3. Execute the following command from the python folder:
123
123
```bash
124
124
pytest --asyncio-mode=auto
125
125
```
126
-
>**Note:** To run redis modules tests, add -k "test_server_modules.py".
126
+
>**Note:** To run Valkey modules tests, add -k "test_server_modules.py".
0 commit comments