summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMoisés Guimarães de Medeiros <moisesguimaraes@users.noreply.github.com>2020-04-07 12:33:08 -0300
committerGitHub <noreply@github.com>2020-04-07 08:33:08 -0700
commitf35f21573ca816171e22b927925d76d5a47fc334 (patch)
tree47fdd7f73865270bc4269822966bcc8bd9b33d4e /.github
parentda89f48496493bf9075d8531e26dae42e0fd0dd9 (diff)
downloadpymemcache-f35f21573ca816171e22b927925d76d5a47fc334.tar.gz
Add TLS support for TCP sockets (#276)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index cc402f7..3e9125e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -34,10 +34,17 @@ jobs:
- name: Tests
run: |
pip install -r test-requirements.txt
- py.test pymemcache/test/ -m unit,integration --port ${{ job.services.memcached.ports[11211] }}
+ py.test pymemcache/test/ \
+ -m unit,integration \
+ --port ${{ job.services.memcached.ports[11211] }} \
+ --tls-port ${{ job.services.tls_memcached.ports[11211] }}
services:
memcached:
image: memcached:latest
ports:
- 11211/tcp
+ tls_memcached:
+ image: scoriacorp/tls_memcached:latest
+ ports:
+ - 11211/tcp