This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git


The following commit(s) were added to refs/heads/main by this push:
     new 8ef1aaa  Unblock emulater based tests (#627)
8ef1aaa is described below

commit 8ef1aaa9cad5699971de1173d16637d01795da6e
Author: Adam Gutglick <[email protected]>
AuthorDate: Wed Jan 28 13:39:01 2026 +0000

    Unblock emulater based tests (#627)
    
    * Unblock emulater based tests
    
    * Use uv instead of pipx
    
    Signed-off-by: Adam Gutglick <[email protected]>
    
    * Skip azurite API version check
    
    ---------
    
    Signed-off-by: Adam Gutglick <[email protected]>
---
 .github/workflows/ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8eb4903..50041ee 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -139,8 +139,10 @@ jobs:
       - name: Configure Azurite (Azure emulation)
         # the magical connection string is from
         # 
https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azurite?tabs=visual-studio#http-connection-strings
+        # We skip the API version check to prevent breaks related to 
differences between Azurite, Azure and the azure-cli, 
+        # see https://github.com/Azure/Azurite/issues/2623
         run: |
-          echo "AZURITE_CONTAINER=$(docker run -d -p 10000:10000 -p 
10001:10001 -p 10002:10002 mcr.microsoft.com/azure-storage/azurite)" >> 
$GITHUB_ENV
+          echo "AZURITE_CONTAINER=$(docker run -d -p 10000:10000 -p 
10001:10001 -p 10002:10002 mcr.microsoft.com/azure-storage/azurite azurite -l 
/data --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0 
--skipApiVersionCheck)" >> $GITHUB_ENV
           az storage container create -n test-bucket --connection-string 
'DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://localhost:10000/devstoreaccount1;QueueEndpoint=http://localhost:10001/devstoreaccount1;'
 
       - name: Setup Rust toolchain

Reply via email to