From 0eb779b63c1feb9bc7fc137c07d0eb9f98e3c016 Mon Sep 17 00:00:00 2001 From: Ryan Gard Date: Mon, 25 Feb 2019 07:41:46 -0800 Subject: [PATCH] ASC-978 Update "rpc-zigzag" Version Update the script to pin to the 1.0 series for "rpc-zigzag". Also, add a variable for the "rpc-zigzag" PyPI package at the top so it can be easily updated in the future without hunting around in the script. --- gating/check/post_send_junit_to_qtest.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gating/check/post_send_junit_to_qtest.sh b/gating/check/post_send_junit_to_qtest.sh index 9b0c6d7b5..eb9b61358 100755 --- a/gating/check/post_send_junit_to_qtest.sh +++ b/gating/check/post_send_junit_to_qtest.sh @@ -9,6 +9,7 @@ set -x export QTEST_API_TOKEN=${RPC_ASC_QTEST_API_TOKEN} VENV_NAME="venv-qtest" VENV_PATH="${WORKSPACE}/${VENV_NAME}" +ZIGZAG_PYPI_PACKAGE="rpc-zigzag~=1.0" if [[ ${RE_JOB_ACTION} == "system_staging" ]]; then PROJECT_ID="84820" @@ -31,7 +32,7 @@ source "${VENV_PATH}/bin/activate" VENV_PIP="${VENV_PATH}/bin/pip" # Install zigzag from PyPI -${VENV_PIP} install rpc-zigzag +${VENV_PIP} install "${ZIGZAG_PYPI_PACKAGE}" # Search for xml files in RE_HOOK_RESULT_DIR xml_files=()