Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Fix bug which was killing all smoke-tests
Browse files Browse the repository at this point in the history
 - only fail if there is no secret password
  • Loading branch information
bboreham committed Jan 4, 2017
1 parent 61d22bb commit 2298a40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/circle-test-smoke
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
source "$STATE"

if [ -n "$TEST_AND_PUBLISH" ] ; then
[ -n "$SECRET_PASSWORD" ] || echo "Cannot run smoke tests: no secret key" && exit 1
[ -n "$SECRET_PASSWORD" ] || { echo "Cannot run smoke tests: no secret key"; exit 1; }
cd $SRCDIR/test
eval $(./gce.sh hosts)
export COVERAGE=true
Expand Down

0 comments on commit 2298a40

Please sign in to comment.