pytest-redis icon indicating copy to clipboard operation
pytest-redis copied to clipboard

Redis fixtures and fixture factories for Pytest.This is a pytest plugin, that enables you to test your code that relies on a running Redis database. It allows you to specify additional fixtures for Re...

Results 12 pytest-redis issues
Sort by recently updated
recently updated
newest added

For the time being we've added pytest-redis (and mirakuru) to own conda channel: https://anaconda.org/esrf-bcu/pytest-redis Would it be possible to add it to conda-forge?

enhancement

https://askubuntu.com/questions/983326/installation-of-specific-version-of-redis-server-in-ubuntu-16-04-server

### What action do you want to perform i have a client that publishes data to a redis end point. the client works with the redis-server running but i am...

### What action do you want to perform Use `shutil.which` to detect the location of the `redis-server` binary instead of using the currently hard-coded "/usr/bin/redis-server". Maybe with a fallback to...

enhancement

### What action do you want to perform Test an application that uses Sentinel to discover masters/slaves ### What are the results ### What are the expected results

### What action do you want to perform I would like to test with a password protected (`--require-pass`) instance `factories.redis_proc` ### What are the results ```python tests/conftest.py:13: in redis_server =...

enhancement
help wanted

I would like to be able to ask pytest-redis to setup a redis instance once per session so I can easily distribute it why pytest-xdist. Why ? Well it works...

Here is a pull request to close #656 , taking into account comments in : https://github.com/ClearcodeHQ/pytest-redis/pull/657 (sorry had to create a new pull request... Not super at ease with github...

I would like to be able to start redis in tests, with redis-server extended with Redis extension modules. The `--loadmodule` command line argument is here for this. Unfortunately it is...

hi, is there a way to have the factory load data from an existing DB file? that would be a much easier way to populate it with test data than...