Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move echo after defining variables
Co-authored-by: Jaime Soriano Pastor <[email protected]>
  • Loading branch information
mrodm and jsoriano authored Jul 24, 2025
commit 340ae5ae201f0ca0ef282e3295553a0cf038235a
2 changes: 1 addition & 1 deletion scripts/test-check-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ run_system_benchmark() {

run_serverless_tests() {
local package_path="$1"
echo "--- Run tests for package ${package_path} in Serverless mode"
local test_options="-v --report-format xUnit --report-output file --defer-cleanup 1s"
local coverage_options="--test-coverage --coverage-format=generic"
echo "--- Run tests for package ${package_path} in Serverless mode"
# skip system tests
elastic-package test asset -C "$package_path" $test_options $coverage_options
elastic-package test static -C "$package_path" $test_options $coverage_options
Expand Down