We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54bb873 commit b06f29cCopy full SHA for b06f29c
.buildkite/scripts/common.sh
@@ -814,10 +814,16 @@ run_tests_package() {
814
fi
815
816
817
- echo "--- [${package}] test installation"
818
- if ! install_package "${package}" ; then
819
- return 1
+ if ! is_serverless ; then
+ # Just run install command on non serverless projects,
+ # "elastic-paackage test asset" command already installs the package via upload API
820
+ # as it does "elastic-package install" command
821
+ echo "--- [${package}] test installation"
822
+ if ! install_package "${package}" ; then
823
+ return 1
824
+ fi
825
826
+
827
echo "--- [${package}] run test suites"
828
if is_serverless; then
829
if ! test_package_in_serverless "${package}" ; then
0 commit comments