mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
38 lines
1.4 KiB
Bash
Executable file
38 lines
1.4 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source test/scripts/jenkins_test_setup_oss.sh
|
|
|
|
if [[ -z "$CODE_COVERAGE" ]]; then
|
|
echo " -> Running functional and api tests"
|
|
|
|
checks-reporter-with-killswitch "Functional tests / Group ${CI_GROUP}" \
|
|
node scripts/functional_tests \
|
|
--debug --bail \
|
|
--kibana-install-dir "$KIBANA_INSTALL_DIR" \
|
|
--include-tag "ciGroup$CI_GROUP"
|
|
|
|
if [[ ! "$TASK_QUEUE_PROCESS_ID" && "$CI_GROUP" == "1" ]]; then
|
|
source test/scripts/jenkins_build_kbn_sample_panel_action.sh
|
|
./test/scripts/test/plugin_functional.sh
|
|
./test/scripts/test/interpreter_functional.sh
|
|
fi
|
|
else
|
|
echo " -> Running Functional tests with code coverage"
|
|
export NODE_OPTIONS=--max_old_space_size=8192
|
|
|
|
echo " -> making hard link clones"
|
|
cd ..
|
|
cp -RlP kibana "kibana${CI_GROUP}"
|
|
cd "kibana${CI_GROUP}"
|
|
|
|
echo " -> running tests from the clone folder"
|
|
node scripts/functional_tests --debug --include-tag "ciGroup$CI_GROUP" --exclude-tag "skipCoverage" || true;
|
|
|
|
echo " -> moving junit output, silently fail in case of no report"
|
|
mkdir -p ../kibana/target/junit
|
|
mv target/junit/* ../kibana/target/junit/ || echo "copying junit failed"
|
|
|
|
echo " -> copying screenshots and html for failures"
|
|
cp -r test/functional/screenshots/* ../kibana/test/functional/screenshots/ || echo "copying screenshots failed"
|
|
cp -r test/functional/failure_debug ../kibana/test/functional/ || echo "copying html failed"
|
|
fi
|