1
0
Fork 0

add bucket support to the rspec tests

This commit is contained in:
Wilfried Goesgens 2017-03-30 17:58:31 +02:00
parent 7d7deb8584
commit a2a2d61cbd
1 changed files with 3 additions and 1 deletions

View File

@ -95,7 +95,7 @@ function rubyTests (options, ssl) {
fs.makeDirectory(pu.LOGS_DIR);
} catch (err) {}
const files = fs.list(fs.join('UnitTests', 'HttpInterface'));
let files = fs.list(fs.join('UnitTests', 'HttpInterface'));
let continueTesting = true;
let filtered = {};
@ -135,6 +135,8 @@ function rubyTests (options, ssl) {
};
let count = 0;
files = tu.splitBuckets(options, files);
for (let i = 0; i < files.length; i++) {
const te = files[i];