Skip to content

Commit

Permalink
disable --bail
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Nov 29, 2018
1 parent 230ec88 commit 8312a1a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions tasks/config/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ module.exports = function (grunt) {
'scripts/functional_tests',
'--config', 'test/api_integration/config.js',
'--esFrom', esFrom,
'--bail',
// '--bail',
'--debug',
],
},
Expand All @@ -188,7 +188,7 @@ module.exports = function (grunt) {
'--config', 'test/server_integration/http/ssl/config.js',
'--config', 'test/server_integration/http/ssl_redirect/config.js',
'--esFrom', esFrom,
'--bail',
// '--bail',
'--debug',
'--kibana-install-dir', KIBANA_INSTALL_DIR,
],
Expand All @@ -200,7 +200,7 @@ module.exports = function (grunt) {
'scripts/functional_tests',
'--config', 'test/plugin_functional/config.js',
'--esFrom', esFrom,
'--bail',
// '--bail',
'--debug',
'--kibana-install-dir', KIBANA_INSTALL_DIR,
'--',
Expand All @@ -214,7 +214,7 @@ module.exports = function (grunt) {
'scripts/functional_tests',
'--config', 'test/functional/config.js',
'--esFrom', esFrom,
'--bail',
// '--bail',
'--debug',
'--',
'--server.maxPayloadBytes=1648576', //default is 1048576
Expand Down
2 changes: 1 addition & 1 deletion tasks/function_test_groups.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function getFunctionalTestGroupRunConfigs({ esFrom, kibanaInstallDir } =
'--include-tag', tag,
'--config', 'test/functional/config.js',
'--esFrom', esFrom,
'--bail',
// '--bail',
'--debug',
'--kibana-install-dir', kibanaInstallDir,
'--',
Expand Down
2 changes: 1 addition & 1 deletion test/scripts/jenkins_xpack_ci_group.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ tar -xzf "$linuxBuild" -C "$installDir" --strip=1
export TEST_ES_FROM=${TEST_ES_FROM:-source}
echo " -> Running functional and api tests"
cd "$XPACK_DIR"
node scripts/functional_tests --debug --bail --kibana-install-dir "$installDir" --include-tag "ciGroup$CI_GROUP"
node scripts/functional_tests --debug --kibana-install-dir "$installDir" --include-tag "ciGroup$CI_GROUP"
echo ""
echo ""

0 comments on commit 8312a1a

Please sign in to comment.