mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 08:49:27 -04:00
* Shell script to run kibana tests on cloud via Jenkins * Add comment explaining cloud setup
26 lines
663 B
Bash
Executable file
26 lines
663 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# This script runs kibana tests compatible with cloud.
|
|
#
|
|
# The cloud instance setup is done in the elastic/elastic-stack-testing framework,
|
|
# where the following environment variables are set pointing to the cloud instance.
|
|
#
|
|
# export TEST_KIBANA_HOSTNAME
|
|
# export TEST_KIBANA_PROTOCOL=
|
|
# export TEST_KIBANA_PORT=
|
|
# export TEST_KIBANA_USER=
|
|
# export TEST_KIBANA_PASS=
|
|
#
|
|
# export TEST_ES_HOSTNAME=
|
|
# export TEST_ES_PROTOCOL=
|
|
# export TEST_ES_PORT=
|
|
# export TEST_ES_USER=
|
|
# export TEST_ES_PASS=
|
|
#
|
|
|
|
set -e
|
|
|
|
source "$(dirname $0)/../../src/dev/ci_setup/setup.sh"
|
|
|
|
xvfb-run node scripts/functional_test_runner --debug --grep @skipcloud --invert
|
|
|