From c6692ee5f10b2de203c71d8757919796ae6c0e2b Mon Sep 17 00:00:00 2001 From: Lokesh Rangineni Date: Tue, 23 Apr 2024 15:59:49 -0400 Subject: [PATCH] checking if this fixes the docker issue in macos12 Trying to fix the issue - https://github.com/feast-dev/feast/issues/4128 Also going to check if this change will be resolved in the github actions as well. Signed-off-by: Lokesh Rangineni --- .github/workflows/unit_tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index ff7c3d5e234..12f2377e599 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -44,6 +44,10 @@ jobs: run: pip install pip-tools - name: Install dependencies run: make install-python-ci-dependencies + - name: Configure docker socket + run: | + export DOCKER_HOST="/var/run/docker.sock" + export TESTCONTAINERS_DOCKER_SOCKET_OVERRIDE="/var/run/docker.sock" - name: Test Python run: make test-python-unit