update config to support repository urls and enable scripting related tests

This commit is contained in:
spalger
2015-07-20 09:44:21 -07:00
parent b9003515a5
commit a527416976
2 changed files with 3 additions and 2 deletions

View File

@ -40,7 +40,8 @@ var versionedOpts = [
'node.bench': true, 'node.bench': true,
'script.inline': true, 'script.inline': true,
'script.indexed': true, 'script.indexed': true,
'path.repo': process.env.ES_PATH_REPO || fromRoot('.es-snapshot-repos') 'path.repo': process.env.ES_PATH_REPO || fromRoot('.es-snapshot-repos'),
'repositories.url.allowed_urls': 'http://snapshot.*'
} }
} }
]; ];

View File

@ -12,7 +12,7 @@ var expect = require('expect.js');
var clientManager = require('./client_manager'); var clientManager = require('./client_manager');
var inspect = require('util').inspect; var inspect = require('util').inspect;
var implementedFeatures = ['gtelte', 'regex', 'benchmark', 'stash_in_path']; var implementedFeatures = ['gtelte', 'regex', 'benchmark', 'stash_in_path', 'groovy_scripting'];
/** /**
* The version that ES is running, in comparable string form XXX-XXX-XXX, fetched when needed * The version that ES is running, in comparable string form XXX-XXX-XXX, fetched when needed