This is an automated email from the ASF dual-hosted git repository.
wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new a78f18d ARROW-5930: [FlightRPC][Python] Disable Flight test causing
segfault in Travis
a78f18d is described below
commit a78f18d3053ffc1802c3e2768a19d4dc6442a577
Author: lihalite <[email protected]>
AuthorDate: Mon Jul 15 11:37:25 2019 -0400
ARROW-5930: [FlightRPC][Python] Disable Flight test causing segfault in
Travis
Looks like all Flight TLS tests are flaky in Python, I will continue
investigating - so far I can't reproduce this locally (using a Xenial VM)
---
python/pyarrow/tests/test_flight.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/python/pyarrow/tests/test_flight.py
b/python/pyarrow/tests/test_flight.py
index ae4bbd7..3482c93 100644
--- a/python/pyarrow/tests/test_flight.py
+++ b/python/pyarrow/tests/test_flight.py
@@ -654,6 +654,9 @@ def test_tls_fails():
client.do_get(flight.Ticket(b'ints'))
+# ARROW-5930: Currently fails in Travis with SIGSEGV when tearing down
+# server
[email protected]
@pytest.mark.requires_testing_data
def test_tls_do_get():
"""Try a simple do_get call over TLS."""
@@ -670,6 +673,9 @@ def test_tls_do_get():
assert data.equals(table)
+# ARROW-5930: Currently fails in Travis with SIGSEGV when tearing down
+# server
[email protected]
@pytest.mark.requires_testing_data
def test_tls_override_hostname():
"""Check that incorrectly overriding the hostname fails."""