emkornfield commented on code in PR #12763: URL: https://github.com/apache/arrow/pull/12763#discussion_r854726214
########## python/pyarrow/tests/conftest.py: ########## @@ -311,3 +320,23 @@ def s3_server(s3_connection): finally: if proc is not None: proc.kill() + + +@pytest.fixture(scope='session') +def gcs_server(): + port = find_free_port() + env = os.environ.copy() + args = [sys.executable, '-m', 'testbench', '--port', str(port)] Review Comment: it actually seems a little stranger then that, I tried exporting the variable in various places and appending it to ~/.profile in various places and couldn't get it to stick. I've cleaned up the approach to only install the file if the script exists (needs to see if this passes mac CI as well) -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org