summaryrefslogtreecommitdiff
path: root/service/go
diff options
context:
space:
mode:
authorBruno Wagner <bwgpro@gmail.com>2015-03-23 10:59:29 -0300
committerBruno Wagner <bwgpro@gmail.com>2015-03-23 10:59:29 -0300
commit8a83d8701d8d233cdbbcb7c06133fea13797a4d5 (patch)
tree9b2449dfa3b3ed56d217196e100e660117846d10 /service/go
parentd6a6560f0ecd4d434f6fe5e1dd5f7bf40fcb2430 (diff)
The whole go script runs with -e now, this will make it break when it breaks
Diffstat (limited to 'service/go')
-rwxr-xr-xservice/go3
1 files changed, 2 insertions, 1 deletions
diff --git a/service/go b/service/go
index c8a672c3..809dd773 100755
--- a/service/go
+++ b/service/go
@@ -1,5 +1,7 @@
#!/bin/bash
+set -e
+
NUM_OF_CORES=''
TRIAL_PATH=''
@@ -93,7 +95,6 @@ function runCoverageUnitAndIntegration {
}
if [ "$1" == 'test' ]; then
- set -e
runPep8
runUnitTests "${@:2}"
runIntegrationTests "${@:2}"