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