Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/ci-scripts/deploy_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ fi

cd ${KOKORO_GFILE_DIR}/appengine/integration_tests

sudo /usr/local/bin/pip install --upgrade -r requirements.txt
sudo -E /usr/local/bin/pip install --upgrade -r requirements.txt

if [ -f ${KOKORO_GITHUB_DIR}/${SAMPLE_APP_DIRECTORY}/requirements.txt ]
then
sudo /usr/local/bin/pip install --upgrade -r ${KOKORO_GITHUB_DIR}/${SAMPLE_APP_DIRECTORY}/requirements.txt
sudo -E /usr/local/bin/pip install --upgrade -r ${KOKORO_GITHUB_DIR}/${SAMPLE_APP_DIRECTORY}/requirements.txt
fi

export DEPLOY_LATENCY_PROJECT='cloud-deploy-latency'
Expand Down
4 changes: 2 additions & 2 deletions tools/ci-scripts/integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ source ${KOKORO_GFILE_DIR}/kokoro/common.sh

export GOOGLE_CLOUD_PROJECT=gcp-runtimes

sudo /usr/local/bin/pip install --upgrade -r ${KOKORO_GFILE_DIR}/appengine/integration_tests/requirements.txt
sudo -E /usr/local/bin/pip install --upgrade -r ${KOKORO_GFILE_DIR}/appengine/integration_tests/requirements.txt

if [ -f ${KOKORO_GITHUB_DIR}/${SAMPLE_APP_DIRECTORY}/requirements.txt ]
then
sudo /usr/local/bin/pip install --upgrade -r ${KOKORO_GITHUB_DIR}/${SAMPLE_APP_DIRECTORY}/requirements.txt
sudo -E /usr/local/bin/pip install --upgrade -r ${KOKORO_GITHUB_DIR}/${SAMPLE_APP_DIRECTORY}/requirements.txt
fi

export GOPATH=${KOKORO_GITHUB_DIR}/${SAMPLE_APP_DIRECTORY}
Expand Down