From 0437475db841643ce665f84b863513f2bd8a9cc0 Mon Sep 17 00:00:00 2001 From: Thomas Newton Date: Mon, 19 Feb 2024 00:06:44 +0000 Subject: [PATCH] Only run blob emulator not queue or table --- python/pyarrow/tests/conftest.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/python/pyarrow/tests/conftest.py b/python/pyarrow/tests/conftest.py index 0d3d22968a830..57bc3c8fc6616 100644 --- a/python/pyarrow/tests/conftest.py +++ b/python/pyarrow/tests/conftest.py @@ -261,11 +261,8 @@ def azure_server(tmpdir_factory): port = find_free_port() env = os.environ.copy() tmpdir = tmpdir_factory.getbasetemp() - # Port 0 means azurite will select any free port. We don't need to connect - # to the queue or table services, we just need them to not conflict with - # in use ports. - args = ['azurite', "--location", tmpdir, "--blobPort", str(port), - "--queuePort", "0", "--tablePort", "0"] + # We only need blob service emulator, not queue or table. + args = ['azurite-blob', "--location", tmpdir, "--blobPort", str(port)] proc = None try: proc = subprocess.Popen(args, env=env)