Skip to content
Merged
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
6 changes: 3 additions & 3 deletions scripts/circle/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ rebuild () {
done
}

if [ "${CIRCLE_BRANCH}" == "master" ] &&
([ "${CI_PULL_REQUEST}" == "" ] || [ "${CIRCLE_TAG}" != "" ])
if [ "${CIRCLE_TAG}" != "" ] ||
([ "${CIRCLE_BRANCH}" == "master" ] && [ "${CI_PULL_REQUEST}" == "" ])
then
# This is a push to master, so system tests will be run.
# This is a tagged build or a push to master, so system tests will be run.
echo $GCLOUD_TESTS_KEY | base64 --decode > ${HOME}/key.json
export GCLOUD_TESTS_KEY="$HOME/key.json"
fi
Expand Down
3 changes: 0 additions & 3 deletions system-test/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,3 @@ module.exports = {
projectId: process.env.GCLOUD_TESTS_PROJECT_ID,
keyFilename: process.env.GCLOUD_TESTS_KEY
};

console.log('google-cloud-node configuration');
console.log(module.exports);