From d8142aa24ff0b85f5867cccc3b52e1bc20daa067 Mon Sep 17 00:00:00 2001 From: Xuan Wang Date: Thu, 22 Feb 2024 16:19:53 +0000 Subject: [PATCH] Add observability to test_packages --- test/distrib/python/test_packages.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/distrib/python/test_packages.sh b/test/distrib/python/test_packages.sh index 989c33a46635f..136632833b175 100755 --- a/test/distrib/python/test_packages.sh +++ b/test/distrib/python/test_packages.sh @@ -24,10 +24,12 @@ then echo "Testing Python binary distribution" ARCHIVES=("$EXTERNAL_GIT_ROOT"/input_artifacts/grpcio-[0-9]*.whl) TOOLS_ARCHIVES=("$EXTERNAL_GIT_ROOT"/input_artifacts/grpcio_tools-[0-9]*.whl) + OBSERVABILITY_ARCHIVES=("$EXTERNAL_GIT_ROOT"/input_artifacts/grpcio_observability-[0-9]*.whl) else echo "Testing Python source distribution" ARCHIVES=("$EXTERNAL_GIT_ROOT"/input_artifacts/grpcio-[0-9]*.tar.gz) TOOLS_ARCHIVES=("$EXTERNAL_GIT_ROOT"/input_artifacts/grpcio-tools-[0-9]*.tar.gz) + OBSERVABILITY_ARCHIVES=("$EXTERNAL_GIT_ROOT"/input_artifacts/grpcio-observability-[0-9]*.tar.gz) fi HEALTH_ARCHIVES=("$EXTERNAL_GIT_ROOT"/input_artifacts/grpcio-health-checking-[0-9]*.tar.gz) @@ -63,6 +65,7 @@ function at_least_one_installs() { if [[ "$1" == "binary" ]]; then validate_wheel_hashes "${ARCHIVES[@]}" validate_wheel_hashes "${TOOLS_ARCHIVES[@]}" + validate_wheel_hashes "${OBSERVABILITY_ARCHIVES[@]}" fi @@ -75,6 +78,7 @@ at_least_one_installs "${TOOLS_ARCHIVES[@]}" at_least_one_installs "${HEALTH_ARCHIVES[@]}" at_least_one_installs "${REFLECTION_ARCHIVES[@]}" at_least_one_installs "${TESTING_ARCHIVES[@]}" +at_least_one_installs "${OBSERVABILITY_ARCHIVES[@]}" #