diff --git a/.ci/scripts/fleet-test.sh b/.ci/scripts/fleet-test.sh new file mode 100755 index 0000000000..c5462286f0 --- /dev/null +++ b/.ci/scripts/fleet-test.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +## Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one +## or more contributor license agreements. Licensed under the Elastic License; +## you may not use this file except in compliance with the Elastic License. + +set -euxo pipefail +# +# Run the functional tests for fleets using the functional-test wrapper +# +# Parameters: +# - STACK_VERSION - that's the version of the stack to be tested. Default '8.0.0-SNAPSHOT'. +# + +STACK_VERSION=${1:-'8.0.0-SNAPSHOT'} +SUITE='fleet' + +.ci/scripts/functional-test.sh "${SUITE}" "" "${STACK_VERSION}"