Skip to content

Commit

Permalink
Update python/pyarrow/tests/conftest.py
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Pitrou <pitrou@free.fr>
  • Loading branch information
emkornfield and pitrou authored Apr 20, 2022
1 parent cd09203 commit 5e6adfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pyarrow/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ def gcs_server():
proc = None
try:
proc = subprocess.Popen(args, env=env)
except OSError:
pytest.skip('`gcs testbench` raised an error when executing')
except OSError as e:
pytest.skip(f"Command {args} failed to execute: {e}")
else:
yield {
'connection': ('localhost', port),
Expand Down

0 comments on commit 5e6adfb

Please sign in to comment.