Skip to content

Commit

Permalink
Only run blob emulator not queue or table
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Newton committed Feb 22, 2024
1 parent d287d30 commit 0437475
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions python/pyarrow/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0437475

Please sign in to comment.