From 8312a1ad170306a5f88b64136772fe6761faaca1 Mon Sep 17 00:00:00 2001 From: spalger Date: Thu, 29 Nov 2018 04:03:30 -0800 Subject: [PATCH] disable --bail --- tasks/config/run.js | 8 ++++---- tasks/function_test_groups.js | 2 +- test/scripts/jenkins_xpack_ci_group.sh | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks/config/run.js b/tasks/config/run.js index dc21d8cfd2897d6..3b410411fd10077 100644 --- a/tasks/config/run.js +++ b/tasks/config/run.js @@ -176,7 +176,7 @@ module.exports = function (grunt) { 'scripts/functional_tests', '--config', 'test/api_integration/config.js', '--esFrom', esFrom, - '--bail', + // '--bail', '--debug', ], }, @@ -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, ], @@ -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, '--', @@ -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 diff --git a/tasks/function_test_groups.js b/tasks/function_test_groups.js index 9ac7bcbf4987735..8cbfa19d6ebb5b9 100644 --- a/tasks/function_test_groups.js +++ b/tasks/function_test_groups.js @@ -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, '--', diff --git a/test/scripts/jenkins_xpack_ci_group.sh b/test/scripts/jenkins_xpack_ci_group.sh index 4df604163911695..d74b6a0a43f4230 100755 --- a/test/scripts/jenkins_xpack_ci_group.sh +++ b/test/scripts/jenkins_xpack_ci_group.sh @@ -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 ""