summaryrefslogtreecommitdiff
path: root/.github
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 /.github
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 '.github')
-rwxr-xr-x.github/workflows/install_and_test.sh2
-rw-r--r--.github/workflows/integration.yaml1
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/install_and_test.sh b/.github/workflows/install_and_test.sh
index 7a8cd67..33a1edb 100755
--- a/.github/workflows/install_and_test.sh
+++ b/.github/workflows/install_and_test.sh
@@ -42,4 +42,4 @@ pip install ${PKG}
pytest -m 'not onlycluster'
# RedisCluster tests
CLUSTER_URL="redis://localhost:16379/0"
-pytest -m 'not onlynoncluster and not redismod' --redis-url=${CLUSTER_URL}
+pytest -m 'not onlynoncluster and not redismod and not ssl' --redis-url=${CLUSTER_URL}
diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml
index bd0fb2d..e81cf33 100644
--- a/.github/workflows/integration.yaml
+++ b/.github/workflows/integration.yaml
@@ -48,6 +48,7 @@ jobs:
- name: run tests
run: |
pip install -r dev_requirements.txt
+ bash docker/stunnel/create_certs.sh
tox -e ${{matrix.test-type}}-${{matrix.connection-type}}
- name: Upload codecov coverage
uses: codecov/codecov-action@v2