summaryrefslogtreecommitdiff
path: root/service/go
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2015-07-24 10:08:07 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 17:00:27 +0200
commit23f838490f8485a5b5011d77612e6b948a823f73 (patch)
treea81183570722d5c5bf11801789c538077d9effd4 /service/go
parent634fd37726f753ea9928fb629c6cccec1f9d5885 (diff)
Run integration tests sequentially.
- Fix for concurrency problems - Should be re-enabled after migration
Diffstat (limited to 'service/go')
-rwxr-xr-xservice/go2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/go b/service/go
index e7864bdc..e7ba4b65 100755
--- a/service/go
+++ b/service/go
@@ -37,7 +37,7 @@ function setupjs {
function runIntegrationTests {
echo "Executing Integration Tests."
resolveNumOfCores
- trial -j $NUM_OF_CORES --reporter=text $* test.integration
+ trial --reporter=text $* test.integration
echo "Done."
}