Skip to content

Commit 4591469

Browse files
committed
Fix redis service
Signed-off-by: Jacob Klegar <jacob@tecton.ai>
1 parent 73ac3de commit 4591469

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/pr_integration_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
services:
2222
redis:
2323
image: redis
24+
ports:
25+
- 6379:6379
2426
options: >-
2527
--health-cmd "redis-cli ping"
2628
--health-interval 10s
@@ -56,7 +58,7 @@ jobs:
5658
run: FEAST_TELEMETRY=False pytest --cov=./ --cov-report=xml --verbose --color=yes sdk/python/tests --integration
5759
env:
5860
REDIS_TYPE: REDIS
59-
REDIS_CONNECTION_STRING: redis:6379,db=0
61+
REDIS_CONNECTION_STRING: localhost:6379,db=0
6062
- name: Upload coverage to Codecov
6163
uses: codecov/codecov-action@v1
6264
with:

0 commit comments

Comments
 (0)