diff options
author | Lidi Zheng <lidiz@google.com> | 2018-11-20 16:57:08 -0800 |
---|---|---|
committer | Lidi Zheng <lidiz@google.com> | 2018-11-27 17:27:39 -0800 |
commit | 43599facf4c8b42b8a14d0601556f4231d9d10f8 (patch) | |
tree | 3d072a265ae9a3482cd8895e45dd0b58501314db /tools/run_tests/artifacts | |
parent | b32d8f5d4d99c5f94f970881ef9d8858eb52bbbc (diff) |
Channelz Python wrapper implementation
* Expose the C-Core API in Cython layer
* Handle the object translation
* Create a separate package for Channelz specifically
* Handle nullptr and raise exception if seen one
* Translate C++ Channelz unit tests
* Adding 5 more invalid query unit tests
Adding peripheral utility for grpcio-channelz package
* Add to `pylint_code.sh`
* Add to Python build script
* Add to artifact build script
* Add to Bazel
* Add to Sphinx module list
Diffstat (limited to 'tools/run_tests/artifacts')
-rwxr-xr-x | tools/run_tests/artifacts/build_artifact_python.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/run_tests/artifacts/build_artifact_python.sh b/tools/run_tests/artifacts/build_artifact_python.sh index 65f2d1c765..bc6e558204 100755 --- a/tools/run_tests/artifacts/build_artifact_python.sh +++ b/tools/run_tests/artifacts/build_artifact_python.sh @@ -108,6 +108,11 @@ then ${SETARCH_CMD} "${PYTHON}" src/python/grpcio_testing/setup.py sdist cp -r src/python/grpcio_testing/dist/* "$ARTIFACT_DIR" + # Build grpcio_channelz source distribution + ${SETARCH_CMD} "${PYTHON}" src/python/grpcio_channelz/setup.py \ + preprocess build_package_protos sdist + cp -r src/python/grpcio_channelz/dist/* "$ARTIFACT_DIR" + # Build grpcio_health_checking source distribution ${SETARCH_CMD} "${PYTHON}" src/python/grpcio_health_checking/setup.py \ preprocess build_package_protos sdist |