Tom-Newton commented on code in PR #40021:
URL: https://github.com/apache/arrow/pull/40021#discussion_r1489122784


##########
python/pyarrow/tests/test_fs.py:
##########
@@ -291,6 +291,37 @@ def subtree_s3fs(request, s3fs):
 }"""
 
 
[email protected]
+def azurefs(request, azure_server):
+    request.config.pyarrow.requires('azure')
+    from pyarrow.fs import AzureFileSystem
+
+    host, port = azure_server['connection']
+    azureite_authority = f"{host}:{port}"
+    azureite_scheme = "http"
+
+    container = 'pyarrow-filesystem/'
+
+    fs = AzureFileSystem(account_name='devstoreaccount1',
+                         
account_key='Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuF'
+                         'q2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==',

Review Comment:
   For S3 the equivalent of account_name and account_key actually come from 
`s3_server`. I'm going to make Azure consistent



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to