summaryrefslogtreecommitdiff
path: root/service/go
diff options
context:
space:
mode:
authorRoald de Vries <rdevries@thoughtworks.com>2016-11-23 15:44:32 +0100
committerRoald de Vries <rdevries@thoughtworks.com>2016-11-23 15:46:46 +0100
commit8a82d46ee03f7212a7f8c629cf4c9f169aa27695 (patch)
tree16756764b4154556b9ffdbab81481357226c54b3 /service/go
parent3d77ec58af42844933ba5cc4f36fcddb95254564 (diff)
more verbose test output
Diffstat (limited to 'service/go')
-rwxr-xr-xservice/go15
1 files changed, 8 insertions, 7 deletions
diff --git a/service/go b/service/go
index 0a2297f8..7df9111b 100755
--- a/service/go
+++ b/service/go
@@ -3,6 +3,7 @@
NUM_OF_CORES=''
NUM_OF_JOBS=''
TRIAL_PATH=''
+TRIAL_REPORTER='verbose'
function getTrialAbsolutePath {
TRIAL_PATH="$(which trial)"
@@ -58,14 +59,14 @@ function setupjs {
function runIntegrationTests {
echo "Executing Integration Tests."
resolveNumOfJobs
- trial -j $NUM_OF_JOBS --reporter=text $* test.integration
+ trial -j $NUM_OF_JOBS --reporter=$TRIAL_REPORTER $* test.integration
echo "Done."
}
function runUnitTests {
echo "Executing Unit Tests."
removeZmqCertificates
- trial --reporter=text $* test.unit
+ trial --reporter=$TRIAL_REPORTER $* test.unit
echo "Done."
}
@@ -87,7 +88,7 @@ function runCoverageUnit {
echo "Generating Unit Test Converage Information."
coverage erase
getTrialAbsolutePath
- coverage run -p --source=pixelated $TRIAL_PATH --reporter=text $* test.unit
+ coverage run -p --source=pixelated $TRIAL_PATH --reporter=$TRIAL_REPORTER $* test.unit
coverage combine
coverage html
echo "Done."
@@ -97,9 +98,9 @@ function runCoverageIntegration {
echo "Generating Integration Test Converage Information."
coverage erase
getTrialAbsolutePath
- coverage run -p --source=pixelated $TRIAL_PATH --reporter=text $* test.integration
+ coverage run -p --source=pixelated $TRIAL_PATH --reporter=$TRIAL_REPORTER $* test.integration
coverage combine
- coverage html --ignore-errors
+ coverage html
echo "Done."
}
@@ -107,8 +108,8 @@ function runCoverageUnitAndIntegration {
echo "Generating Unit and Integration Test Converage Information."
coverage erase
getTrialAbsolutePath
- coverage run -p --source=pixelated $TRIAL_PATH --reporter=text test.unit
- coverage run -p --source=pixelated $TRIAL_PATH --reporter=text test.integration
+ coverage run -p --source=pixelated $TRIAL_PATH --reporter=$TRIAL_REPORTER test.unit
+ coverage run -p --source=pixelated $TRIAL_PATH --reporter=$TRIAL_REPORTER test.integration
coverage combine
coverage html
echo "Done."