Skip to content

Commit

Permalink
ASC-978 Update "rpc-zigzag" Version
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ryan-rs committed Feb 25, 2019
1 parent 6cd89ce commit 0eb779b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gating/check/post_send_junit_to_qtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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=()
Expand Down

0 comments on commit 0eb779b

Please sign in to comment.