mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 16:29:04 -04:00
Backports the following commits to 6.7: - Refactor ES-related environment variables (#33036)
17 lines
295 B
Bash
Executable file
17 lines
295 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
function report {
|
|
if [[ -z "$PR_SOURCE_BRANCH" ]]; then
|
|
node src/dev/failed_tests/cli
|
|
else
|
|
echo "Failure issues not created on pull requests"
|
|
fi
|
|
}
|
|
|
|
trap report EXIT
|
|
|
|
export TEST_BROWSER_HEADLESS=1
|
|
|
|
"$(FORCE_COLOR=0 yarn bin)/grunt" jenkins:unit --dev;
|