From b8b0d9f39d81c9a97ac2d8f538d884250115ea1c Mon Sep 17 00:00:00 2001 From: qooba Date: Wed, 12 May 2021 23:44:32 +0200 Subject: [PATCH] Add redis provider Signed-off-by: qooba --- .github/workflows/pr_integration_tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr_integration_tests.yml b/.github/workflows/pr_integration_tests.yml index cab2d212de..ba7a1ce34e 100644 --- a/.github/workflows/pr_integration_tests.yml +++ b/.github/workflows/pr_integration_tests.yml @@ -21,6 +21,8 @@ jobs: services: redis: image: redis + ports: + - 6379:6379 options: >- --health-cmd "redis-cli ping" --health-interval 10s @@ -53,4 +55,4 @@ jobs: run: FEAST_TELEMETRY=False pytest --verbose --color=yes sdk/python/tests --integration env: REDIS_TYPE: REDIS - REDIS_CONNECTION_STRING: redis:6379,db=0 + REDIS_CONNECTION_STRING: localhost:6379,db=0