From 040c7c94101638b0bedbe49c7cdea90341852d8b Mon Sep 17 00:00:00 2001 From: Fokko Date: Tue, 13 May 2025 23:07:41 +0200 Subject: [PATCH] Try setting the IP for the integration tests --- tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/conftest.py b/tests/conftest.py index 21fc6c7400..729e29cb0c 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -2443,6 +2443,7 @@ def spark() -> "SparkSession": os.environ["AWS_REGION"] = "us-east-1" os.environ["AWS_ACCESS_KEY_ID"] = "admin" os.environ["AWS_SECRET_ACCESS_KEY"] = "password" + os.environ["SPARK_LOCAL_IP"] = "127.0.0.1" spark = ( SparkSession.builder.appName("PyIceberg integration test")