From 68acff150227ca5aadc1e2e34317bb3bb0746622 Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Tue, 2 Dec 2025 10:58:46 +0000 Subject: [PATCH] fix: correct parameter names in error messages Error messages were using --test-setup, --test-subdirs, and --test-suite instead of the actual parameter names: --setup, --subdirs, and --suite Signed-off-by: Derek Higgins --- scripts/github/schedule-record-workflow.sh | 2 +- scripts/integration-tests.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/github/schedule-record-workflow.sh b/scripts/github/schedule-record-workflow.sh index afe664f80..df40d9a63 100755 --- a/scripts/github/schedule-record-workflow.sh +++ b/scripts/github/schedule-record-workflow.sh @@ -55,7 +55,7 @@ EOF # - jq must be installed for JSON parsing # - You must be in a git repository that is a fork or clone of llamastack/llama-stack # - The branch must exist on the remote repository where you want to run the workflow -# - You must specify test subdirectories to run with -s/--test-subdirs +# - You must specify test subdirectories to run with -s/--subdirs # Parse command line arguments while [[ $# -gt 0 ]]; do diff --git a/scripts/integration-tests.sh b/scripts/integration-tests.sh index 9907cd0bb..fe88996a4 100755 --- a/scripts/integration-tests.sh +++ b/scripts/integration-tests.sh @@ -116,13 +116,13 @@ if [[ -z "$STACK_CONFIG" && "$COLLECT_ONLY" == false ]]; then fi if [[ -z "$TEST_SETUP" && -n "$TEST_SUBDIRS" && "$COLLECT_ONLY" == false ]]; then - echo "Error: --test-setup is required when --test-subdirs is provided" + echo "Error: --setup is required when --subdirs is provided" usage exit 1 fi if [[ -z "$TEST_SUITE" && -z "$TEST_SUBDIRS" ]]; then - echo "Error: --test-suite or --test-subdirs is required" + echo "Error: --suite or --subdirs is required" exit 1 fi