TINKERPOP-2021 ignored failing test related to this issue until it can be resolved CTR
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/8c280c11 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/8c280c11 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/8c280c11 Branch: refs/heads/tp33 Commit: 8c280c11313e3e935ee115d00c32a6bdfdeb20cc Parents: fd25300 Author: Stephen Mallette <[email protected]> Authored: Tue Sep 4 13:41:54 2018 -0400 Committer: Stephen Mallette <[email protected]> Committed: Tue Sep 4 13:41:54 2018 -0400 ---------------------------------------------------------------------- gremlin-python/src/main/jython/tests/driver/test_client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/8c280c11/gremlin-python/src/main/jython/tests/driver/test_client.py ---------------------------------------------------------------------- diff --git a/gremlin-python/src/main/jython/tests/driver/test_client.py b/gremlin-python/src/main/jython/tests/driver/test_client.py index 0459428..e03ffee 100644 --- a/gremlin-python/src/main/jython/tests/driver/test_client.py +++ b/gremlin-python/src/main/jython/tests/driver/test_client.py @@ -22,7 +22,7 @@ from gremlin_python.driver.client import Client from gremlin_python.driver.request import RequestMessage from gremlin_python.process.graph_traversal import __ from gremlin_python.structure.graph import Graph -from gremlin_python.driver import serializer +from unittest import skip __author__ = 'David M. Brown ([email protected])' @@ -114,6 +114,7 @@ def test_multi_conn_pool(client): assert len(result_set.all().result()) == 6 +@skip("TINKERPOP-2021") def test_big_result_set(client): g = Graph().traversal() t = g.inject(1).repeat(__.addV('person').property('name', __.loops())).times(20000).count()
