def remote_connection(event_loop, gremlin_url):
try:
remote_conn = event_loop.run_until_complete(
DriverRemoteConnection.open(gremlin_url, 'g'))
except OSError:
pytest.skip('Gremlin Server is not running')
else:
return remote_conn
评论列表
文章目录