Skip to content

Commit 4c42e03

Browse files
committed
Updated infra for cluster
1 parent 1c2a5b6 commit 4c42e03

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/integration.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ jobs:
101101
invoke standalone-tests --protocol=3
102102
103103
- name: Combine test coverage
104-
run: coverage combine combined-coverage.xml coverage/
104+
run: |
105+
ls -1
106+
coverage combine combined-coverage.xml coverage/
105107
106108
- name: Upload test results and profiling data
107109
uses: actions/upload-artifact@v4

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def devenv(c):
2020
def devenv_cluster(c):
2121
"""Brings up the test environment for OSS cluster redis, by wrapping docker compose."""
2222
clean(c)
23-
cmd = "docker compose --profile cluster up -d --build"
23+
cmd = "docker compose --profile cluster --profile ssl up -d --build"
2424
run(cmd)
2525

2626

0 commit comments

Comments
 (0)