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


##########
python/pyarrow/conftest.py:
##########
@@ -54,6 +55,7 @@
 
 defaults = {
     'acero': False,
+    'azure': False,

Review Comment:
   Done



##########
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:
   Done



-- 
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