diff --git a/backends/arm/README.md b/backends/arm/README.md index d812d9b3601..f844b1d6422 100644 --- a/backends/arm/README.md +++ b/backends/arm/README.md @@ -249,10 +249,15 @@ Some tests, with `u55`, `u85` and `vgf` in the name require external dependencie ``` In addition, some model tests in the Arm backend require third-party libraries or packages. -To run these tests, you need to install the required dependencies by running the script `examples/arm/setup.sh` with the flag `--setup-test-dependency`. +To run these tests, install the required dependencies directly: -Please note that installing model test dependencies is a standalone process. When using the `--setup-test-dependency` flag, -the script will install only the necessary dependencies for model tests, skipping all other setup procedures. +``` +bash backends/arm/scripts/install_models_for_test.sh +``` + +Installing model test dependencies is a standalone process. The script installs +only the dependencies needed for model tests, skipping all other setup +procedures. ## Using git hooks diff --git a/examples/arm/setup.sh b/examples/arm/setup.sh index 323815b59a2..0972765ac1a 100755 --- a/examples/arm/setup.sh +++ b/examples/arm/setup.sh @@ -182,11 +182,6 @@ function check_options() { enable_vulkan_sdk=1 shift ;; - --setup-test-dependency) - log_step "deps" "Installing test dependency..." - source $et_dir/backends/arm/scripts/install_models_for_test.sh - exit 0 - ;; --help) print_usage "$@" exit 0