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
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -274,6 +274,16 @@ against a redis running on port 9999.:
274
274
REDIS_PORT=9999 go test<your options>
275
275
```
276
276
277
+
### Running Tests with Redis Modules
278
+
279
+
If you need to run tests that require Redis modules, ensure that you're using a Redis server with the necessary modules installed. You can quickly set up such a server using Docker:
280
+
281
+
```shell
282
+
docker run -p 6379:6379 -it redis:8.0-M03
283
+
```
284
+
285
+
Then, sync your test environment with this server.
286
+
277
287
## See also
278
288
279
289
-[Golang ORM](https://bun.uptrace.dev) for PostgreSQL, MySQL, MSSQL, and SQLite
0 commit comments