1
0
Fork 0

added buckets

This commit is contained in:
Frank Celler 2019-04-21 14:36:54 +02:00
parent cdf9f446b8
commit 1bd25865fe
1 changed files with 6 additions and 0 deletions

View File

@ -48,6 +48,8 @@ function shellClient (options) {
testCases = testCases.concat(tu.scanTestPath('js/client/tests/http'));
testCases = testCases.concat(tu.scanTestPath('js/client/tests/shell'));
testCases = tu.splitBuckets(options, testCases);
return tu.performTests(options, testCases, 'shell_client', tu.runInArangosh);
}
@ -61,6 +63,8 @@ function shellServer (options) {
let testCases = tu.scanTestPath('js/common/tests/shell');
testCases = testCases.concat(tu.scanTestPath('js/server/tests/shell'));
testCases = tu.splitBuckets(options, testCases);
return tu.performTests(options, testCases, 'shell_server', tu.runThere);
}
@ -71,6 +75,8 @@ function shellServer (options) {
function shellServerOnly (options) {
let testCases = tu.scanTestPath('js/server/tests/shell');
testCases = tu.splitBuckets(options, testCases);
return tu.performTests(options, testCases, 'shell_server_only', tu.runThere);
}