This is an automated email from the ASF dual-hosted git repository.
spmallette pushed a change to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
from f607268f26 Bump github/codeql-action from 3 to 4 (#3235)
add 3a747fa9d0 Add .venv to ignores CTR
add 4ce4cdb58a Restructured gremlin-python testing
No new revisions were added by this update.
Summary of changes:
.gitignore | 1 +
gremlin-python/build/generate.groovy | 2 +-
gremlin-python/docker-compose.yml | 17 ++++++--
gremlin-python/pom.xml | 4 ++
.../{ => build/lib}/gremlin_python/__init__.py | 0
.../lib}/gremlin_python/driver/__init__.py | 0
.../lib}/gremlin_python/driver/aiohttp/__init__.py | 0
.../gremlin_python/driver/aiohttp/transport.py | 0
.../lib}/gremlin_python/driver/client.py | 0
.../lib}/gremlin_python/driver/connection.py | 0
.../driver/driver_remote_connection.py | 0
.../lib}/gremlin_python/driver/protocol.py | 0
.../gremlin_python/driver/remote_connection.py | 0
.../lib}/gremlin_python/driver/request.py | 0
.../lib}/gremlin_python/driver/resultset.py | 0
.../lib}/gremlin_python/driver/serializer.py | 0
.../lib}/gremlin_python/driver/transport.py | 0
.../lib}/gremlin_python/driver/useragent.py | 0
.../lib/gremlin_python/process}/__init__.py | 0
.../gremlin_python/process/anonymous_traversal.py | 0
.../lib}/gremlin_python/process/graph_traversal.py | 0
.../lib}/gremlin_python/process/strategies.py | 0
.../lib}/gremlin_python/process/translator.py | 0
.../lib}/gremlin_python/process/traversal.py | 0
.../{ => build/lib}/gremlin_python/statics.py | 0
.../lib}/gremlin_python/structure/__init__.py | 0
.../lib}/gremlin_python/structure/graph.py | 0
.../lib/gremlin_python/structure/io}/__init__.py | 0
.../gremlin_python/structure/io/graphbinaryV1.py | 0
.../gremlin_python/structure/io/graphsonV2d0.py | 0
.../gremlin_python/structure/io/graphsonV3d0.py | 0
.../lib}/gremlin_python/structure/io/util.py | 0
.../dist/gremlinpython-3.7.6.dev1-py3-none-any.whl | Bin 0 -> 73849 bytes
.../python/dist/gremlinpython-3.7.6.dev1.tar.gz | Bin 0 -> 52783 bytes
gremlin-python/src/main/python/pyproject.toml | 3 +-
.../src/main/python/tests/driver/__init__.py | 20 ---------
.../{radish => tests/feature}/feature_steps.py | 0
.../python/{radish => tests/feature}/gremlin.py | 0
.../python/{radish => tests/feature}/terrain.py | 5 +++
.../main/python/{radish => tests/feature}/utils.py | 0
.../aiohttp => tests/integration}/__init__.py | 2 +-
.../python/tests/{ => integration}/conftest.py | 9 ++--
.../tests/{ => integration/driver}/__init__.py | 0
.../tests/{ => integration}/driver/test_client.py | 0
.../driver/test_driver_remote_connection.py | 2 +-
.../driver/test_driver_remote_connection_http.py | 0
.../test_driver_remote_connection_threaded.py | 0
.../{ => integration}/driver/test_serializer.py | 0
.../driver/test_web_socket_client_behavior.py | 4 +-
.../integration/process}/__init__.py | 2 +-
.../tests/{ => integration}/process/test_dsl.py | 0
.../{ => integration}/process/test_traversal.py | 0
.../integration/structure}/__init__.py | 2 +-
.../integration/structure/io}/__init__.py | 2 +-
.../structure/io/test_functionalityio.py | 43 +++++++++++++++++++
.../src/main/python/tests/process/__init__.py | 20 ---------
.../src/main/python/tests/structure/__init__.py | 20 ---------
.../src/main/python/tests/structure/io/__init__.py | 20 ---------
.../driver/aiohttp => tests/unit}/__init__.py | 2 +-
.../driver/aiohttp => tests/unit/io}/__init__.py | 2 +-
.../{structure => unit}/io/test_graphbinaryV1.py | 0
.../{structure => unit}/io/test_graphsonV2d0.py | 46 ---------------------
.../{structure => unit}/io/test_graphsonV3d0.py | 0
.../tests/{structure => unit}/io/test_util.py | 0
.../aiohttp => tests/unit/process}/__init__.py | 2 +-
.../tests/{ => unit}/process/test_strategies.py | 0
.../tests/{ => unit}/process/test_translator.py | 0
.../aiohttp => tests/unit/structure}/__init__.py | 2 +-
.../tests/{ => unit}/structure/test_graph.py | 0
.../main/python/tests/{ => unit}/test_statics.py | 0
pom.xml | 1 +
71 files changed, 87 insertions(+), 146 deletions(-)
copy gremlin-python/src/main/python/{ => build/lib}/gremlin_python/__init__.py
(100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/__init__.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/aiohttp/__init__.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/aiohttp/transport.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/client.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/connection.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/driver_remote_connection.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/protocol.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/remote_connection.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/request.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/resultset.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/serializer.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/transport.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/driver/useragent.py (100%)
copy gremlin-python/src/main/python/{gremlin_python/driver =>
build/lib/gremlin_python/process}/__init__.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/process/anonymous_traversal.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/process/graph_traversal.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/process/strategies.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/process/translator.py (100%)
mode change 100755 => 100644
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/process/traversal.py (100%)
copy gremlin-python/src/main/python/{ => build/lib}/gremlin_python/statics.py
(100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/structure/__init__.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/structure/graph.py (100%)
copy gremlin-python/src/main/python/{gremlin_python/structure =>
build/lib/gremlin_python/structure/io}/__init__.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/structure/io/graphbinaryV1.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/structure/io/graphsonV2d0.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/structure/io/graphsonV3d0.py (100%)
copy gremlin-python/src/main/python/{ =>
build/lib}/gremlin_python/structure/io/util.py (100%)
create mode 100644
gremlin-python/src/main/python/dist/gremlinpython-3.7.6.dev1-py3-none-any.whl
create mode 100644
gremlin-python/src/main/python/dist/gremlinpython-3.7.6.dev1.tar.gz
delete mode 100644 gremlin-python/src/main/python/tests/driver/__init__.py
rename gremlin-python/src/main/python/{radish =>
tests/feature}/feature_steps.py (100%)
rename gremlin-python/src/main/python/{radish => tests/feature}/gremlin.py
(100%)
rename gremlin-python/src/main/python/{radish => tests/feature}/terrain.py
(97%)
rename gremlin-python/src/main/python/{radish => tests/feature}/utils.py (100%)
copy gremlin-python/src/main/python/{gremlin_python/driver/aiohttp =>
tests/integration}/__init__.py (99%)
rename gremlin-python/src/main/python/tests/{ => integration}/conftest.py (98%)
rename gremlin-python/src/main/python/tests/{ =>
integration/driver}/__init__.py (100%)
rename gremlin-python/src/main/python/tests/{ =>
integration}/driver/test_client.py (100%)
rename gremlin-python/src/main/python/tests/{ =>
integration}/driver/test_driver_remote_connection.py (99%)
rename gremlin-python/src/main/python/tests/{ =>
integration}/driver/test_driver_remote_connection_http.py (100%)
rename gremlin-python/src/main/python/tests/{ =>
integration}/driver/test_driver_remote_connection_threaded.py (100%)
rename gremlin-python/src/main/python/tests/{ =>
integration}/driver/test_serializer.py (100%)
rename gremlin-python/src/main/python/tests/{ =>
integration}/driver/test_web_socket_client_behavior.py (97%)
copy gremlin-python/src/main/python/{gremlin_python/driver/aiohttp =>
tests/integration/process}/__init__.py (99%)
rename gremlin-python/src/main/python/tests/{ =>
integration}/process/test_dsl.py (100%)
rename gremlin-python/src/main/python/tests/{ =>
integration}/process/test_traversal.py (100%)
copy gremlin-python/src/main/python/{gremlin_python/driver/aiohttp =>
tests/integration/structure}/__init__.py (99%)
copy gremlin-python/src/main/python/{gremlin_python/driver/aiohttp =>
tests/integration/structure/io}/__init__.py (99%)
rename gremlin-python/src/main/python/tests/{ =>
integration}/structure/io/test_functionalityio.py (83%)
delete mode 100644 gremlin-python/src/main/python/tests/process/__init__.py
delete mode 100644 gremlin-python/src/main/python/tests/structure/__init__.py
delete mode 100644
gremlin-python/src/main/python/tests/structure/io/__init__.py
copy gremlin-python/src/main/python/{gremlin_python/driver/aiohttp =>
tests/unit}/__init__.py (99%)
copy gremlin-python/src/main/python/{gremlin_python/driver/aiohttp =>
tests/unit/io}/__init__.py (99%)
rename gremlin-python/src/main/python/tests/{structure =>
unit}/io/test_graphbinaryV1.py (100%)
rename gremlin-python/src/main/python/tests/{structure =>
unit}/io/test_graphsonV2d0.py (93%)
rename gremlin-python/src/main/python/tests/{structure =>
unit}/io/test_graphsonV3d0.py (100%)
rename gremlin-python/src/main/python/tests/{structure =>
unit}/io/test_util.py (100%)
copy gremlin-python/src/main/python/{gremlin_python/driver/aiohttp =>
tests/unit/process}/__init__.py (99%)
rename gremlin-python/src/main/python/tests/{ =>
unit}/process/test_strategies.py (100%)
rename gremlin-python/src/main/python/tests/{ =>
unit}/process/test_translator.py (100%)
copy gremlin-python/src/main/python/{gremlin_python/driver/aiohttp =>
tests/unit/structure}/__init__.py (99%)
rename gremlin-python/src/main/python/tests/{ => unit}/structure/test_graph.py
(100%)
rename gremlin-python/src/main/python/tests/{ => unit}/test_statics.py (100%)