Skip to content

Commit

Permalink
Shell script to run kibana tests on cloud via Jenkins (#21107)
Browse files Browse the repository at this point in the history
* Shell script to run kibana tests on cloud via Jenkins

* Add comment explaining cloud setup
  • Loading branch information
liza-mae authored Jul 23, 2018
1 parent fc5d329 commit 94ac3c5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions test/scripts/jenkins_cloud.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/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

0 comments on commit 94ac3c5

Please sign in to comment.