summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-12-16 09:36:56 +0200
committerGitHub <noreply@github.com>2021-12-16 09:36:56 +0200
commit18c6809b761bc6755349e1d7e08e74e857ec2c65 (patch)
tree29ba60b2d00dbc999981e2def8a51fd0a07a9e6a /CONTRIBUTING.md
parenta8b8f142399a62e64c3003adda2d9563eea95ef4 (diff)
downloadredis-py-18c6809b761bc6755349e1d7e08e74e857ec2c65.tar.gz
Support for password-encrypted SSL private keys (#1782)
Adding support for SSL private keys with a password. This PR also adds support for future SSL tests.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index fe37ff9..04f989a 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -58,6 +58,7 @@ can execute docker and its various commands.
- A Redis replica node
- Three sentinel Redis nodes
- A multi-python docker, with your source code mounted in /data
+- An stunnel docker, fronting the master Redis node
The replica node, is a replica of the master node, using the
[leader-follower replication](https://redis.io/topics/replication)
@@ -73,7 +74,7 @@ tests as well. With the 'tests' and 'all-tests' targets, all Redis and
RedisCluster tests will be run.
It is possible to run only Redis client tests (with cluster mode disabled) by
-using `invoke redis-tests`; similarly, RedisCluster tests can be run by using
+using `invoke standalone-tests`; similarly, RedisCluster tests can be run by using
`invoke cluster-tests`.
Each run of tox starts and stops the various dockers required. Sometimes