Anas
Anas
I moved my project to docker and all the tests with httpretty.activate decorator fail with the following output ``` Exception in callback BaseSelectorEventLoop._read_from_self() handle: Traceback (most recent call last): File...
How can I mock a url that is used to download a file? Is it possible to set a file into the body of register_uri?
Basically it would be easier to use `WebsocketCommunicator` with context manager like the following. ``` from channels.testing import WebsocketCommunicator with WebsocketCommunicator(SimpleWebsocketApp, "/testws/") as communicator: await communicator.send_to(text_data="hello") response = await communicator.receive_from()...
Can you please update loadtesting directory with the new version of channels and daphne?
`aioredis` has already released an alpha and beta version, but it is `2.0.0` so it clashes with the `install_requirements` [here](https://github.com/django/channels_redis/blob/9793d099beff719884854dcdd25709aee745ce97/setup.py#L34) which requires `aioredis~=1.0`. Is it possible to have a new...
Many commands are added since a specific version of redis, since this library supports redis from version 4 officially (?), some commands are available for newer version are available in...
**Problem Statement** It would be nice to fully support `NX`, `XX`, `GT` and `LT` to make it more efficient to do complex operations. Have a look [here](https://redis.io/commands/expire/) and [here](https://redis.io/commands/pexpire/) **Describe...
**Problem Statement** `django-redis` should introduce hasmaps and support basic operations, `hset`, `hdel`, `hlen`, `hkeys` and `hexists`. **Describe the solution you'd like** Add an interface similar to `redis-py` to support hasps
**Problem Statement** `django-redis` should introduce sets and support basic operations, `sadd`, `sremove`, `smembers`, `sismembers` and `spop`. **Describe the solution you'd like** Add an interface similar to `redis-py` to support set