[GitHub] tinkerpop pull request #873: TINKERPOP-1518 Cache Graph.Features for tests

2018-06-13 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/tinkerpop/pull/873


---


[GitHub] tinkerpop pull request #873: TINKERPOP-1518 Cache Graph.Features for tests

2018-06-08 Thread spmallette
GitHub user spmallette opened a pull request:

https://github.com/apache/tinkerpop/pull/873

TINKERPOP-1518 Cache Graph.Features for tests

https://issues.apache.org/jira/browse/TINKERPOP-1518

For graphs that have an expensive startup time but a static set of 
`Graph.Features` the new `GraphProvider.getStaticFeatures()` method should help 
speed their test times as it will prevent creation of a new `Graph` instance 
for the test if the graph does not support the requisite features. For testing 
purposes, this capability was implemented for Neo4j, but it didn't do much to 
speed the execution time of the test suite - saved a couple minutes or so. It's 
generally pretty cheap to create Neo4j instances themselves, so I guess that is 
expected.

(just issued the PR, not quite ready for VOTE yet)

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/apache/tinkerpop TINKERPOP-1518

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/tinkerpop/pull/873.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #873


commit aec170982aa03d1a07248721cb045ba95e11188b
Author: Stephen Mallette 
Date:   2018-06-08T00:15:53Z

TINKERPOP-1518 GraphProvider allows for caching of graph features

commit 221fda584c6baf7c65eb4e6eebf72bb0ba251de4
Author: Stephen Mallette 
Date:   2018-06-08T11:45:29Z

TINKERPOP-1518 Minor refactoring - extracted requirement check function




---